I'm originally a Java programmer who now works with Objective-C. I'd like to create an abstract class but that doesn't appear to be possible in Objective-C. Is this possible?
If not, how close to an abstract class can I get in Objective-C?
|
I'm originally a Java programmer who now works with Objective-C. I'd like to create an abstract class but that doesn't appear to be possible in Objective-C. Is this possible? If not, how close to an abstract class can I get in Objective-C? |
|||||||||
|
|
Typically, Objective-C class are abstract by convention only—if the author documents a class as abstract, just don't use it without subclassing it. There is no compile-time enforcement that prevents instantiation of an abstract class, however. In fact, there is nothing to stop a user from providing implementations of abstract methods via a category (i.e. at runtime). You can force a user to at least override certain methods by raising an exception in those methods implementation in your abstract class:
If your method returns a value, it's a bit easier to use
as then you don't need to add a return statement from the method. If the abstract class is really an interface (i.e. has no concrete method implementations), using an Objective-C protocol is the more appropriate option. |
|||||||||||||||||||
|
|
No there is no way to create an abstract class in Objective C. You can mock an abstract class - by making the methods/ selectors call doesNotRecognizeSelector: and therefore raise an exception making the class unusable. for example:
you can also do this for init. |
|||||||||||||
|
|
from http://www.omnigroup.com/mailman/archive/macosx-dev/2004-August/053887.html Objective-C doesn't have the abstract compiler construct like Java at this time. So all you do is define the abstract class as any other normal class and implement methods stubs for the abstract methods that either are empty or report non-support for selector. For example...
I also do the following to prevent the initialization of the abstract class via the default initializer.
|
|||||||||||||
|
|
Just riffing on @Barry Wark's answer above (and updating for iOS 4.3) and leaving this for my own reference:
then in your methods you can use this
|
|||||||||||||||||||
|
|
Instead of trying to create an abstract base class, consider using a protocol (similar to a Java interface). This allows you to define a set of methods, and then accept all objects that conform to the protocol and implement the methods. For example, I can define an Operation protocol, and then have a function like this:
Where op can be any object implementing the Operation protocol. If you need your abstract base class to do more than simply define methods, you can create a regular Objective-C class and prevent it from being instantiated. Just override the - (id)init function and make it return nil or assert(false). It's not a very clean solution, but since Objective-C is fully dynamic, there's really no direct equivalent to an abstract base class. |
|||||||||||
|
|
Using |
|||
|
|
|
I know this was asked/answered long ago but the solution I just came up with is:
Its not as succinct as in Java but you do get the desired compiler warning. |
|||||||
|
|
(more of a related suggestion) I wanted to have a way of letting the programmer know "do not call from child" and to override completely (in my case still offer some default functionality on behalf of the parent when not extended):
The advantage is that the programmer will SEE the "override" in the declaration and will know they should not be calling Granted, it is ugly having to define individual return types for this, but it serves as a good enough visual hint and you can easily not use the "override_" part in a subclass definition. Of course a class can still have a default implementation when an extension is optional. But like the other answers say, implement a run-time exception when appropriate, like for abstract (virtual) classes. It would be nice to have built in compiler hints like this one, even hints for when it is best to pre/post call the super's implement, instead of having to dig through comments/documentation or... assume.
|
||||
|
|
|
In Xcode (using clang etc) I like to use It provides some protection against accidentally using the method. ExampleIn the base class
Taking this one-step further, I create a macro:
This lets you do this:
Like I said, this is not real compiler protection but it's about as good as your going to get in a language that doesn't support abstract methods. |
|||||
|
|
If you need something to hide your instance variables from users of your code and to keep stuff encapsulated, clean, and hidden try out Class Clusters. They be the bomb yo. But you should be an experienced Objective-C programmer and have some knowledge of NSZone or you can straight tarnish your memory yo. This tutorial is pretty dank if you feel like you're up for it: Dank tutorial on Class Clusters http://www.cocoadev.com/index.pl?ClassClusters |
|||
|
|
|
Probably this kind of situations should only happen at development time, so this might work:
|
|||
|
|