- 1
What is object oriented programming
Java
4 Respostas
+ 6
Soma sekhar Start learning java.
+ 3
https://www.sololearn.com/Course/Java/?ref=app
Go through this course to know about oops
+ 3
it's the idea of using data to resemble a real life object
🍎 is equivalent to
public class Apple{
String colour;
Apple(String apple){
this.apple=apple;};
};
Apple redApple = new Apple("Red Apple");
now redApple refers to an instance of -> 🍎