This piece of code is a classical example of dynamic binding in Objective-C [1]:
float total = tareWeight; // start with weight of empty container
int i, n = [self size]; // n = number of members
for (i = 0; i < n; ++i) { // loop over each member
id member = [self at:i]; // get next member
total += [member weight]; // accumulate weight of contents
}
return total; // return total weight to caller
So, as a programmer with some experience in this language and doing my first steps in C++, I'd like to know: how would this be implemented in C++, given that it also supports some kind of late binding?
In this example, we assume that each member can be of any class, however
implementing the weight method is a must, of course. These days mechanisms
like protocols could be used as well, to enforce the implementation to be
compatible (then declaring member as id<Matter>) but it's not needed at
all to be able to work.
In C++, Would creating a super class with the so called virtual functions be the only alternative?
Edit
Just to clarify, the above code can be seen as a container class method
which returns the total weight of its components. You don't know in advance
what will be on the container, it can be any object. You only know that
these objects respond to the message weight.
[1] Object-Oriented Programming, an Evolutionary Approach, 2nd Edition, 1991 - Brad J. Cox, Andrew J. Novobilski - Chapter 4 Page 65
weightmethod with an integer return value, whereas the canonical C++ implementation requires the class to implement an explicit interface by subclassing a (possibly abstract) base and overriding itsvirtual int weight()member function. The latter requires the class to be modified unless it already happens to implement the interface. – pmjordan Mar 29 '12 at 14:45membervariable? I mean, how can I declare it as one class and initialize/use as another? Sorry, I know little about C++. – sidyll Mar 29 '12 at 14:48memberbe a pointer-to-base-class (super class); when you call a virtual method on this pointer, the appropriate method is found. This must be implemented with pointers, if you use objects instead, you'll encounter "object slicing." I also want to point out that you can look into the "visitor pattern" for an alternative to implementing all functionality in the element classes themselves. – tmpearce Mar 29 '12 at 14:55