First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert
What is difference between Methods and Constructor?
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
 
verified
Best 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.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...