Introduction to Constructors in Java


Constructors initialize new objects. They have the same name as the class and no return type.

Source Code

class Car {
    int modelYear;
    String modelName;

    public Car(int year, String name) {
        modelYear = year;
        modelName = name;
    }

    public static void main(String[] args) {
        Car myCar = new Car(1969, "Mustang");
        System.out.println(myCar.modelYear + " " + myCar.modelName);
    }
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments