I know Java, and now I'm learning Objective-C. What exactly are the differences between Java interfaces and Objective-C protocols?
|
2
|
|
|
|
|
|
First off, a little historical perspective on the topic, from one of the creators of Java. Next, Wikipedia has a moderately helpful section on Objective-C protocols. In particular, understand that Objective-C supports both formal protocols (declared with the If you adopt a formal protocol (Objective-C language for "implement an interface") the compiler will emit warnings for unimplemented methods, just as you would expect in Java. Also (as skaffman mentioned), if a class implements the methods contained in a formal protocol, it is said to "conform" to that protocol, even if its interface doesn't explicitly adopt it. You can test protocol conformance in code (using -conformsToProtocol:) like this:
With the advent of Objective-C 2.0 (in Leopard), formal protocols can now define optional methods — a class conforms to a protocol as long as it implements all the required methods. You can use This opens up a lot of flexibility to developers, particularly for implementing delegates and listeners. Instead of extending something like a MouseInputAdapter (which can be annoying, since Java is also single-inheritance) or implementing a lot of pointless, empty methods, you can adopt a protocol and implement only the optional methods you care about. With this pattern, the caller checks whether the method is implemented before invoking it (using -respondsToSelector) like this:
If the overhead of reflection becomes a problem, you can always cache the boolean result for reuse, but resist the urge to optimize prematurely. :-) |
|||
|
|
|
|
They are almost identical. However the one thing that has caught me out, is that unless you explicitly declare that an objective C protocol also implements NSObject, references to that protocol don't get access to the methods that NSObject declares (without a compiler warning anyway). With java you can have a reference to an interface, and still call toString() etc on it. eg Objective C:
Java:
Objective C (fixed):
|
||||
|
|
|
They're pretty similar, although I think a class in Objective C can be considered to "implement" the protocol even if it doesn't explicitly declare that it does. For example, in Java say you have interface X, which declares method m. If you also have a class which has a method with the same signature of m, the class doesn't actually implement interface X unless it specifically declares it. In Objective-C, this explicit declaration isn't necessary. I think.... |
||||
|
