Posts

Intro to Java and OOP

 Hello everyone! This post will provide sources and references to install Java, tagging along will be a short description of what java is capable of. You can find the Java JDK download link here , it can be used with multiple operating systems such as Linux, MacOs, and all current Windows operating systems. To use java you will need a separate program to work in tandem with Java, I recommend the IDE I use which is NetBeans, you can download the program here . OOP or better known as Object oriented programming are the procedures that are used to design programs by using objects as sources. There are four different systems used for java to operate: encapsulation, abstraction, inheritance, and polymorphism. Sources may also add objects and classes as primary functions. Encapsulation will perform the grouping of variables, and the functions that will operate on them, then turning these variables into an object. Encapsulation can act as a security measure for your work, if someone else ...