0% found this document useful (0 votes)
33 views1 page

Constructor Demo

Uploaded by

4k4you
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views1 page

Constructor Demo

Uploaded by

4k4you
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

public class ConstructorDemo {

public static void main(String[] args) {

Car c1 = new Car();

c1.setMake("BMW");
System.out.println(c1.getMake());

System.out.println(c1.speed);
System.out.println(c1.gear);

System.out.println("*********************");

Car c2 = new Car(10, 1);


System.out.println(c2.speed);
System.out.println(c2.gear);
}
}

You might also like