Need for Constructors
Need for Constructors
• The method name must exactly match the classname.
• There must not be a return type declared for the method.
public class Xyz {
// member variables go here
public Xyz() {
// set up the object
}
public Xyz(int x) {
// set up the object with a parameter
}
}