Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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;
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #object #java
ADD COMMENT
Topic
Name
3+5 =