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

Is it possible to override operator use in Objective-C?

For example

myClassInstance + myClassInstance

calls a custom function to add the two.

share|improve this question

3 Answers

up vote 44 down vote accepted

Operator overloading is not a feature of Objective-C. If two instances of your classes can be added together, provide a method and allow them to be added using that method:

Thing *result = [thingOne thingByAddingThing:thingTwo];

Or, if your class is mutable:

[thingOne addThing:thingTwo];
share|improve this answer
+1 dreamlax:Really appreciated and upvoted :) – SNR Jan 4 '12 at 11:23

No, you can't do this in Objective-C.

share|improve this answer

First, operator overloading is evil. Second, C doesn't have operator overloading, and Objective-C is a proper superset of C, which only adds a handful of keywords and a messaging syntax.

That being said, if you're using Apple's development environment, you can use Objective-C++ instead of Objective-C, which gives you access to all of C++'s mistakes and misfeatures, including operator overloading. The simplest way to use Objective-C++ is just to change the extension on your implementation files from ".m" to ".mm"

share|improve this answer
12  
I don't think it's fair to categorically say it's evil. It doesn't generally seem to pose a big problem in Smalltalk, Ruby, Python or Haskell. – Chuck Sep 1 '10 at 0:25
2  
Having worked on several large python projects, operator overloading can very much be evil.... Lost countlessnhours to buggy overloads. Mostly in trying to find the damned things. – bbum Sep 1 '10 at 0:47
2  
Smalltalk doesn't have operator overloading, it has binary messages which behave the same as all the other messages. – JeremyP Sep 1 '10 at 9:37
3  
If ever you need to recreate basic datatypes. (And I do) loosing operator overloading is crippling A+B*C-D becomes A.add(B.times(C)).Minus(C)) – Oxinabox Nov 19 '11 at 14:09
6  
So let me understand: if I have Vector type (for each game programming language) which I have written, or similar things, you prefer to write myVector.Add(theOtherVector).Cross(somethingElse) instead of (myVector + theOtherVector) * somethingElse? Sorry, btu this answer is completely subjective and definitely not explained. – Fire-Dragon-DoL Apr 19 '12 at 1:27
show 6 more comments

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.