java what is an object code example
Example 1: object in java
Objects: came from class, we can create multiple objects from a class
ArrayList<> list = new ArrayList<>();
Class refName OBJECT
each object has its own copy of instance variable
· declared outside the blocks or methods
Object: Instance of the class. We can store different data's to objects
Object Creation: with new keyword.
ClassName obj = new ExistingConstructor;
Example 2: how to make a class in java
public class Object {
public int a = 1;
private int b = 5;
int c = 0;
void setB(int B)
{
b = B;
}
int getA()
{
return b;
}
}