What is difference between overloading and overiding ?
Anonimo
Overloading means method name should be same, but parameters are different in within same class, Overiding means method name and parameter should be same. We can override the properties using overide anotation in subclass.