0
Isn't making properties 'static' similar to making methods 'final'? If I'm not wrong static properties are immutable right?
1 Odpowiedź
+ 1
Static members belong to the class and they are shared to their subsequent child classes as well. But when you declare the same identifier in your child class, you hide the one which is with the parent.
Final keyword makes a member immutable, so you cannot override a final method.