Java and Object-Oriented Programming: A Beginner-Friendly Overview
When I first learned Java and object-oriented programming (OOP), it felt like a lot of unfamiliar terminology and setup steps. This post explains the basics of installing Java and the four major principles of OOP in a way that a newbie can understand. Before writing any code, you need to install the Java Development Kit (JDK). I started with the official Java Tutorials from Oracle , which explain what Java is and how to get started: Oracle – Java Tutorials: Trail: Getting Started : https://docs.oracle.com/javase/tutorial/getStarted/index.html Oracle – Hello World! for the NetBeans IDE : https://docs.oracle.com/javase/tutorial/getStarted/cupojava/netbeans.html These tutorials helped me get the right version of Java installed and introduced me to Java syntax. Because I’m a visual learner, I also watched this YouTube walkthrough on setting up Java and creating your first program: https://www.youtube.com/watch?v=eIrMbAQSU34 Both the written tutorials and video reinforced h...