InterviewSolution
| 1. |
What Is The Difference Between A Constructor And A Method? |
|
Answer» A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no RETURN TYPE, and is invoked USING the new operator. A method is an ordinary member function of a class. It has its own name, a return type (which MAY be void), and is invoked using the dot operator. A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. A method is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator. |
|