Difference between this() and super() in Java language.

: 591
Paper : Java FAQ (Frequently Asked Questions and answers) for freshers | Platform : Object-oriented programming Language | Category : Programming FAQs

this() super()
It belongs to the current instance of the class. It belongs to the current instance of the parent class.
It calls the default constructor of the same class It calls the default constructor of the parent class.
It accesses the method of the current class. It accesses the method of the parent class.
It points to the instance of the current class. It points to the instance of the base class.