0
What is the difference between super and this keyword in java?
As we can call both child and parent from super and this as well?
1 Respuesta
+ 2
super references the parent class, and this references the current class you're in.
As we can call both child and parent from super and this as well?