In java or Android there are @Override annotations. What does it mean? I found that it is used when method is from subclass or inherited interface’s method, I want to know further and other is @SuppressWarnings its also Anonation, if yes how many annonation used by java and for which purpose.
Share
This question is also answered here, and quite succinctly:
Android @Override usage
In other words, if you add @Override this helps you make sure you are really overriding an existing method! Pretty darn useful.