Getting started with Java and Object Oriented Programming
Hello everyone! In this post, I will help you get started with Java Programming and a high level overview of Object Oriented Programming (OOP) with Java. To start, you will need to choose an IDE that you are most comfortable with. An IDE is an Integrated Development Environment. It will help you write code in many programming languages (including Java). It make you work efficiently and help you find and correct errors quickly. My favorite IDE is Eclipse which is available to download from here: Enabling Open Innovation & Collaboration | The Eclipse Foundation . For help installing and writing your first Hello World code, please refer to this video: How to Download and Install the Eclipse IDE for Java Developers and Run Hello World - Appficial - YouTube Before we dive into high-level overview of OOP, we first need to explain what a "class" and a "method" is in Java. A class , some refer to it as a template and some as blueprint is where you will be writing you...