How to avoid the base class member functions getting overridden by sub class in objective - c
Posted
by Manjunath
on Stack Overflow
See other posts from Stack Overflow
or by Manjunath
Published on 2010-05-19T09:32:01Z
Indexed on
2010/05/19
9:40 UTC
Read the original article
Hit count: 444
Like in java:
A final class cannot be subclassed. This is done for reasons of security and efficiency. Accordingly, many of the Java standard library classes are final, for example java.lang.System and java.lang.String. All methods in a final class are implicitly final.
How can I achieve this behavior in objective-c?
© Stack Overflow or respective owner