What are the Final fields & Final Methods ?

Fields final methods
0
Posted

What are the Final fields & Final Methods ?

0

Fields and methods can also be declared final. Final method: A final method cannot be overridden in a subclass. Final field: A final field is like a constant: once it has been given a value, it cannot be assigned to again.

Related Questions