Suppose I have a method in a Java class, and I don't want any subclass of that class to be able to override that method. Can I do that?
You can declare the method to be final, as in:
final
public final String getId() { ... }
For more info, see http://docs.oracle.com/javase/tutorial/java/IandI/final.html
1.4m articles
1.4m replys
5 comments
57.0k users