Constructors
Question 1 |
Implicit return type of a class constructor is:
not of class type itself | |
class type itself | |
a destructor of class type | |
a destructor not of class type |
Question 1 Explanation:
Implicit return type of a class constructor is class type itself.
Syntax For Constructors:
Access_Modifier No Return_Type Class(...)
Example:
public static main(String [ ]args)
Constructor rules:
1. Constructors are always used with a new.
2. Have the same name as that of Class
3. Does not have a return type
4. Can be Overloaded but not Overridden.
Syntax For Constructors:
Access_Modifier No Return_Type Class(...)
Example:
public static main(String [ ]args)
Constructor rules:
1. Constructors are always used with a new.
2. Have the same name as that of Class
3. Does not have a return type
4. Can be Overloaded but not Overridden.
There is 1 question to complete.
