Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
12  
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/#1020330 – Quinn Taylor Jun 23 '09 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 '09 at 14:10
so have a look at the CocoaDev site which gives it a java comparison cocoadev.com/index.pl?AbstractSuperClass – user299352 Mar 22 '10 at 20:13

11 Answers

up vote 288 down vote accepted

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 your method returns a value, it's a bit easier to use

@throw [NSException exceptionWithName:NSInternalInconsistencyException
                               reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
                             userInfo:nil];

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.

share|improve this answer
And then XCode is so stupid (or flexible, as it were) that if your method actually needs to return a value, you still have to do that AFTER your raise line or you get a warning. – Yar Sep 25 '10 at 3:34
2  
@Yar, I don't think this is a failing of Xcode. Virtually all statically typed languages require a return value when a function/method is declared with such. Java, C# and C++ are no different. – Barry Wark Sep 25 '10 at 3:58
3  
Glad you mentioned that! I was actually thinking of Java. If you throw an UnsupportedOperationException (usually meaning, "I'll get to this method later") you do not need to return. – Yar Sep 25 '10 at 4:33
13  
@Joren @Yar -[NSException raise] is just a message to the NSException class. The compiler has now way of knowing that it will exit the method (you could override it with a category that did nothing at runtime). If you use @throw, a language construct, you don't need a return value. – Barry Wark Jan 7 '11 at 15:05
1  
It seems like Apple've changed +exceptionWithName:format:userInfo: to +exceptionWithName:reason:userInfo: – Gonzalo Larralde Jan 27 '11 at 20:13
show 3 more comments

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.

share|improve this answer
14  
I have no idea why this is downvoted. – Chuck Jun 23 '09 at 19:09
3  
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 '09 at 20:42
3  
@Chuck, I did not downvote, but the NSObject reference suggests using this where you do NOT want to inherit a method, not to enforce overriding of a method. Although those may be the same thing, perhaps :) – Yar Jun 23 '11 at 2:44

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;
}
share|improve this answer
1  
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 '09 at 20:45
17  
The doesNotRecognizeSelector approach prevents Apple's suggested self=[super init] pattern. – david Dec 17 '09 at 8:38
@david: I'm pretty sure the whole point is to raise an exception as soon as possible. Ideally it should be at compile time, but since there is no way to do that, they settled for a run time exception. This is akin to an assertion failure, which should never be raised in production code in the first place. In fact, an assert(false) might actually be better since it is clearer that this code should never run. The user can't do anything to fix it, the developer must fix it. Thus raising an exception or assertion failure here sounds like a good idea. – Senseful Apr 6 '10 at 3:51
I don't think this is a viable solution as subclasses may have perfectly legitimate calls to [super init]. – Raffi Khatchadourian Feb 6 '12 at 2:25

Just riffing on @Barry Wark's answer above (and updating for iOS 4.3) and leaving this for my own reference:

#define mustOverride() @throw [NSException exceptionWithName:NSInvalidArgumentException reason:[NSString stringWithFormat:@"%s must be overridden in a subclass/category", __PRETTY_FUNCTION__] userInfo:nil]
#define methodNotImplemented() mustOverride()

then in your methods you can use this

- (void) someMethod {
     mustOverride(); // or methodNotImplemented(), same thing
}



Notes: Not sure if making a macro look like a C function is a good idea or not, but I'll keep it until schooled to the contrary. I think it's more correct to use NSInvalidArgumentException (rather than NSInternalInconsistencyException) since that's what the runtime system throws in response to doesNotRecognizeSelector being called (see NSObject docs).

share|improve this answer
2  
Adding this to my utils.h grab bag. Thanks! – TomA Jul 21 '11 at 12:58
1  
Sure thing, @TomA, I hope it gives you ideas for other code that you can macro. My most-used macro is a simple reference to a singleton: the code says universe.thing but it expands to [Universe universe].thing. Big fun, saving thousands of letters of code... – Yar Jul 21 '11 at 13:41
2  
+1 for ending up with a very self explanatory code this way. – Neovibrant Jul 27 '11 at 22:27
Great. Changed it a bit, though: #define mustOverride() @throw [NSException exceptionWithName:NSInvalidArgumentException reason:[NSString stringWithFormat:@"%s must be overridden in a subclass/category", __PRETTY_FUNCTION__] userInfo:nil]. – noamtm Aug 16 '12 at 12:41
1  
@Yar: I don't think so. We use __PRETTY_FUNCTION__ all over the place, via a DLog(...) macro, as suggested here: stackoverflow.com/a/969291/38557. – noamtm Aug 19 '12 at 12:05
show 2 more comments

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.

share|improve this answer
To me, this seems to be the appropriate way to go for cases where you would use abstract class, at least when it is meant to mean "interface" really (like in C++). Are there any hidden downsides to this approach? – febeling Apr 12 '11 at 20:10
1  
@febeling, abstract classes -- at least in Java -- are not just interfaces. They also define some (or most) behavior. This approach could be good in some cases, though. – Yar Sep 10 '11 at 1:11
Abstract class have no the same purpose as protocol/interface ... – aleroot Jun 1 '12 at 9:44
I need a base class to implement certain functionality that my subclasses all share (removing duplication), but I also need a protocol for other methods that the baseclass should not handle (the abstract part). So I need to use both, and thats where it can get tricky to make sure your subclasses are implementing themselves properly. – LightningStryk May 6 at 16:34

Using @property and @dynamic could also work. If you declare a dynamic property and don't give a matching method implementation, everything will still compile without warnings, and you'll get an unrecognized selector error at runtime if you try to access it. This essentially the same thing as calling [self doesNotRecognizeSelector:_cmd], but with far less typing.

share|improve this answer

I know this was asked/answered long ago but the solution I just came up with is:

  1. Create a Protocol for everything you want in your "abstract" class
  2. Create a base class (or maybe call it abstract) that implements the protocol. For all the methods you want "abstract" implement them in the .m file but not the .h file.
  3. Have your child class inherit from the base class AND implement the protocol. This way the compiler will give you a warning for any method in the protocol that isn't implemented by your child class.

Its not as succinct as in Java but you do get the desired compiler warning.

share|improve this answer
1  
+1 This is really the solution that comes closest to an abstract Class in Java. I have used this approach myself and it works great. It is even allowed to name the protocol the same as the base class (just as Apple did with NSObject). If you then put the protocol and the base class declaration in the same header file it is almost indistinguishable from an abstract class. – codingFriend1 Oct 23 '12 at 13:01
Ah, but my abstract class implements part of a protocol, the rest is implemented by subclasses. – Roger Wernersson Jan 7 at 12:16

(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):

typedef void override_void;
typedef id override_id;

@implementation myBaseClass

// some limited default behavior (undesired by subclasses)
- (override_void) doSomething;
- (override_id) makeSomeObject;

// some internally required default behavior
- (void) doesSomethingImportant;

@end

The advantage is that the programmer will SEE the "override" in the declaration and will know they should not be calling [super ..].

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.

example of the hint

share|improve this answer

In Xcode (using clang etc) I like to use __attribute__((unavailable(...))) to tag the abstract classes so you get an error/warning if you try and use it.

It provides some protection against accidentally using the method.

Example

In the base class @interface tag the "abstract" methods:

- (void)myAbstractMethod:(id)param1 __attribute__((unavailable("You should always override this")));

Taking this one-step further, I create a macro:

#define UnavailableMacro(msg) __attribute__((unavailable(msg)))

This lets you do this:

- (void)myAbstractMethod:(id)param1 UnavailableMacro(@"You should always override 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.

share|improve this answer
I couldn't get it. I applied your suggestion on my base class -init method and now Xcode does not allow me create an instance of inherited class and a compile time error occurs unavailable.... Would you please explain more? – anonim Nov 23 '12 at 22:14
Make sure you have an -init method in your subclass. – rjstelling Nov 24 '12 at 21:29

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

share|improve this answer

Probably this kind of situations should only happen at development time, so this might work:

- (id)myMethodWithVar:(id)var {
   NSAssert(NO, @"You most override myMethodWithVar:");
   return nil;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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