+ 1
What is super keyword in java??
4 Réponses
+ 6
The super keyword refers to parent objects. It is used to call superclass methods, and to access the superclass constructor.
+ 4
`super` is a keyword that refers to the parent class.
+ 1
Just for fun:
Maybe :"Sesame open" ?
0
Super is a reference to the parent variable or methods of class from which you have inherited in child class.