Viewing some code or even creating an automatic method I noticed the presence of it @Override
.
What does it actually do in the code?
Viewing some code or even creating an automatic method I noticed the presence of it @Override
.
What does it actually do in the code?
The @Override annotation explicitly states that the declared method is overwriting a method of the same signature declared in the superclass or interface being extended / implemented by its class.