Java

Topic: Constructors

What  are Characteristics of constructor:?

constructor should be declared in public section.No return type can be specified for constructors. Not even void type can be specified for return type in constructor. So constructor can't return values.Constructors are invoked automatically when objects are created.

Browse random answers: