Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
struct A {
  int a;
  virtual void print() {}
};

struct B : A {
  int b;
  virtual void print() {}
};

int main(void)
{
  A *a = new B;
  a[0].print(); // g++, vs2010, clang call B::print.
}

All three g++, vs2010, clang call B::print. Almost doubting my C++ 101. I was under the impression that using a dot with an object does not result in a dynamic dispatch. Only -> with a pointer and dot with a reference will result in a dynamic dispatch.

So my question is whether this code is portable?

share|improve this question
3  
Yes, why wouldn't a reference work for dynamic dispatch? This has little to do with portability but it is portable. – AJG85 Jan 12 '12 at 18:57
1  
virtual dispatch happens via pointers and references. – Loki Astari Jan 12 '12 at 19:16

5 Answers

up vote 14 down vote accepted

a[0] is the same as *a, and that expression is a reference to an A, and virtual dispatch happens through references just as it does through pointers. a->print() and (*a).print() are entirely identical.

share|improve this answer
4  
You might want to mention that a[0] is actually equivalent to *(a+0), which is in turn the same as (*a). That's how array subscripts are evaluated, assuming no operator overloading is taking place. – In silico Jan 12 '12 at 18:57
1  
@Insilico: No, wait, a has a pointer type, and you cannot overload operators for pointers. – Kerrek SB Jan 12 '12 at 19:02
Is there any difference between A* a = new B; and A* a = new B[1]; besides the fact that you use delete on the former and delete[] on the latter? – Seth Carnegie Jan 12 '12 at 19:04
@SethCarnegie: I don't think so. The latter returns a pointer to the first (and only) element, and the former just returns a pointer to the object... looks like they're pretty much the same (assuming no hocus pocus in the underlying allocation functions). – Kerrek SB Jan 12 '12 at 19:06
1  
@Insilico: That's true. And if this weren't C++ but CSS, then a[href] would be an element selector, while *a would match all anchors. – Kerrek SB Jan 12 '12 at 19:09
show 3 more comments

It's portable. a[0] returns a reference, and references use dynamic dispatch as well.

share|improve this answer

Yes. It is equivalent to -

a->print();
share|improve this answer

It is portable and the behaviour is well-defined. operator[] on a pointer just does pointer arithmetic and a dereference. It is adding 0 * sizeof(A) to the pointer, so in a sense it is a "dangerous" operation as any other value but 0 would fail (on an array of Bs), but as 0 * sizeof(A) is 0, in this case you're ok because it's adding 0.

Polymorphism works on references as well as pointers.

share|improve this answer

Using a[0] with a pointer is well defined and means the same as *(a + 0). That's how the built in [] operator works.

You are partly right about the compiler not needing to use dynamic dispatch when there is no polymorphism. This is just a common optimization though, and not required by the language.

When the code is

A a;
a.print();

the compiler can call the correct function directly, because it can tell the object type at compile time.

share|improve this answer
I'm (sort of) curious about one thing. I can't imagine an implementation where it wouldn't work, but a[0] is *(a+0); there's pointer arithmetic in there. And I think that pointer arithmetic is undefined behavior if the dynamic type of the pointed to object is different from the static type, which is the case here. – James Kanze Jan 12 '12 at 19:57
True (sort of), but I have a hard time seeing that a + 0 could be different from a. Probably not mentioned in the standard. :-) – Bo Persson Jan 12 '12 at 20:18
On the other hand, I wouldn't expect the rules concerning a + 0 to differ from those concerning a + 1:-). (I don't like special cases.) In practice, of course, a + 0 is required to be equal to a when there's no undefined behavior, and I can't see an implementation making it different when there theoretically is undefined behavior. – James Kanze Jan 13 '12 at 13:10

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.