





| 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. |