+ 2
What is the difference between"this" keyword and "super" keyword in Java?
2 Antworten
+ 4
Here's a good reading for you mate:
https://way2java.com/oops-concepts/java-made-clear-difference-between-this-and-super-example/
Hth, cmiiw
+ 3
this refers to the current object instance.
super refers to the current object instances super class.