vote up 4 vote down star
2

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?

flag

75% accept rate
The answers below are great. I find this the issue of abstract classes is tangentially related to private methods — both are methods for restricting what client code can do, and neither exist in Objective-C. I think it helps to understand that the mentality of the language itself is fundamentally different from Java. See my answer to: stackoverflow.com/questions/1020070/… – Quinn Taylor Jun 23 at 20:59
Thanks for the info on the mentality of the Objective-C community as opposed to other languages. That really does resolve a number of related questions I had (like why no straightforward mechanism for private methods, etc). – Jonathan Arbogast Jun 24 at 14:10

4 Answers

vote up 7 vote down check

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:

[NSException raise:NSInternalInconsistencyException 
            format:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)];

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.

link|flag
vote up 3 vote down

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...

- (id)someMethod:(SomeObject*)blah
{
     [self doesNotRecognizeSelector:_cmd];
     return nil;
}

I also do the following to prevent the initialization of the abstract class via the default initializer.

- (id)init
{
     [self doesNotRecognizeSelector:_cmd];
     [self release];
     return nil;
}
link|flag
A link is appropriate. Copying wholesale without naming the author is not. – Matthew Flaschen Jun 23 at 18:47
2  
I think this is a bit harsh - there is reference to the material and I think having the content here is also relevant to answering the question. – Grouchal Jun 23 at 18:53
2  
Agreed. Having the link is sufficient, you can look up the author there if desired. Give the guy a break! – Quinn Taylor Jun 23 at 20:41
I hadn't thought of using -doesNotRecognizeSelector: and I kinda like this approach in some ways. Does anyone know of a way to make the compiler issue a warning for an "abstract" method created either this way or by raising an exception? That would be awesome... – Quinn Taylor Jun 23 at 20:45
vote up 5 vote down

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:

- (id)someMethod:(SomeObject*)blah
{
     [self doesNotRecognizeSelector:_cmd];
     return nil;
}

you can also do this for init.

link|flag
3  
I have no idea why this is downvoted. – Chuck Jun 23 at 19:09
Nor I. Is someone just having a bad day? They're spending their reputation stupidly — this answer seemed helpful to me... – Quinn Taylor Jun 23 at 20:42
vote up 3 vote down

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:

- (void)performOperation:(id<Operation>)op
{
   // do something with operation
}

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.