java new object code example

Example 1: java create new object

Car mycar = new Car();

Example 2: create instance object java

myCar = new Car();

Example 3: make an object in java

public class Puppy {
   public Puppy(String name) {
      // This constructor has one parameter, name.
      System.out.println("Passed Name is :" + name );
   }

   public static void main(String []args) {
      // Following statement would create an object myPuppy
      Puppy myPuppy = new Puppy( "tommy" );
   }
}

Example 4: how to make an objec tjava

class Puppy() {
	String name;
	int age;
  
  
 	Puppy(String puppy_name, int puppy_age) {
    	name = puppy_name;
   		age = puppy_age;
 	}
  
  	public static void main(String[] args) {
     	Puppy rex = new Puppy("rex",4); 
    }
  
}

Example 5: 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;