What is final
variable?
If you make any variable as final, you cannot change the
value of final variable(It will be constant)
What is final method?
Final methods can't be overriden
What is final class?
Final class can't be inherited
What is blank final
variable?
A final variable, not initalized at the time of
declaration, is known as blank final variable.
Can you declare the
main method as final?
Yes, such as, public static final void main(String[]
args){}.
No comments:
Post a Comment