+ 1
final and static
what is the difference between final and static?
1 Answer
+ 4
They are not very similar, 'final' marks an object as the final version so it can't be changed. 'static' makes an object accessible by static methods and in a static way.