+ 1
Can anybody explain "this" and "super" keywords in java
3 Respostas
+ 4
this() will give you the instance of current class.
super() gives you the instance of immediate parent class.
If you are using these keywords in constructor, you can either use this() or super() and not both simultaneously because they both must be the first line of the constructor.
+ 1
thank you