do you know what is difference between a method and a class?
Printable View
do you know what is difference between a method and a class?
Method has return type and () , declared within class, it's name starts lower case.
Class has no return type, can have methods, variables, it's name starts from capital.
What else?
What's the similarity between these two??
Both are for 2 different purpose. A class is the blueprint from which individual objects are created. These object can have behavior and states, for those states and behavior , variables and methods are used.