Can final keyword be used for a method?
|
1
|
|||||
|
|
|
Absolutely! The Here's what it means when applied to... a variable: You simply cannot assign the variable a new value (rendering it a constant, of course) a method: You cannot re-implement (i.e., override) this method in a subclass a class: You cannot define a subclass In each case we're simply indicating: once this thing is declared, this is the last value (or implementation) you'll ever see for it. |
||
|
|
|
|
Yes. You can make a method final
There are typically two reasons for making a method final
|
||||
|
|
|
Sure can. Making it impossible to override. |
||
|
|
|
|
Sure, check out The Final Word on the Final Keyword
|
||
|
|
|
|
Yes, it is possible to declare a method as From The Java Language Specifications, Third Edition, Section 8.4.3.3:
For more information, the Writing Final Classes and Methods page from The Java Tutorials has more information. |
||
|
|
|
|
Yes. A final method cannot be overridden by subclasses. This is often used to prevent subclasses from altering crucial behaviors of the class. |
||
|
|
|
|
As a note to the other answers. You can use final. In practice I rarely see people using it and I'm not sure why. A lot of the code I write these days is intended for multi-threaded environments and I tend to make the class final an immutable (if its a value class) so that it is threadsafe. The problem with marking some methods as final (and not others) is that you are stating that there is something special about that method and nothing special about the others. That's rarely what people actually mean in my experience. If a class is intended for inheritence you need to keep it clean and keep it small to prevent unwanted side-effects. All this depends on whether you are writing code for your self and your team or whether you are writing for a wider audience - i.e. a public api on an Open Source project or a commercial project. |
||
|
|
