How does the C++ compiler know which implementation of a virtual function to call? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:00:30Z http://stackoverflow.com/feeds/question/203126 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call 7 How does the C++ compiler know which implementation of a virtual function to call? jeremy Ruten 2008-10-14T22:43:23Z 2008-10-14T23:06:58Z <p>Here is an example of polymorphism from <a href="http://www.cplusplus.com/doc/tutorial/polymorphism.html" rel="nofollow">http://www.cplusplus.com/doc/tutorial/polymorphism.html</a> (edited for readability):</p> <pre><code>// abstract base class #include &lt;iostream&gt; using namespace std; class Polygon { protected: int width; int height; public: void set_values(int a, int b) { width = a; height = b; } virtual int area(void) =0; }; class Rectangle: public Polygon { public: int area(void) { return width * height; } }; class Triangle: public Polygon { public: int area(void) { return width * height / 2; } }; int main () { Rectangle rect; Triangle trgl; Polygon * ppoly1 = &amp;rect; Polygon * ppoly2 = &amp;trgl; ppoly1-&gt;set_values (4,5); ppoly2-&gt;set_values (4,5); cout &lt;&lt; ppoly1-&gt;area() &lt;&lt; endl; // outputs 20 cout &lt;&lt; ppoly2-&gt;area() &lt;&lt; endl; // outputs 10 return 0; } </code></pre> <p>My question is how does the compiler know that ppoly1 is a Rectangle and that ppoly2 is a Triangle, so that it can call the correct area() function? It could find that out by looking at the "Polygon * ppoly1 = &rect;" line and knowing that rect is a Rectangle, but that wouldn't work in all cases, would it? What if you did something like this?</p> <pre><code>cout &lt;&lt; ((Polygon *)0x12345678)-&gt;area() &lt;&lt; endl; </code></pre> <p>Assuming that you're allowed to access that random area of memory.</p> <p>I would test this out but I can't on the computer I'm on at the moment.</p> <p>(I hope I'm not missing something obvious...)</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203135#203135 3 Answer by Rob Wells for How does the C++ compiler know which implementation of a virtual function to call? Rob Wells 2008-10-14T22:46:31Z 2008-10-14T22:46:31Z <p>Disregarding aspects of binding, it's not actually the compiler that determines this.</p> <p>It is the C++ runtime that evaluates, via vtables and vpointers, what the derived object actually is at runtime.</p> <p>I highly recommend Scott Meyer's book Effective C++ for good descriptions on how this is done.</p> <p>Even covers how default parameters in a method in a derived class are ignored and any default parameters in a base class are still taken! That's binding.</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203136#203136 17 Answer by Chris Jester-Young for How does the C++ compiler know which implementation of a virtual function to call? Chris Jester-Young 2008-10-14T22:46:42Z 2008-10-14T22:46:42Z <p>Each object (that belongs to a class with at least one virtual function) has a pointer, called a <code>vptr</code>. It points to the <code>vtbl</code> of its actual class (which each class with virtual functions has at least one of; possibly more than one for some multiple-inheritance scenarios).</p> <p>The <code>vtbl</code> contains a bunch of pointers, one for each virtual function. So at runtime, the code just uses the object's <code>vptr</code> to locate the <code>vtbl</code>, and from there the address of the actual overridden function.</p> <p>In your specific case, <code>Polygon</code>, <code>Rectangle</code>, and <code>Triangle</code> each has a <code>vtbl</code>, each with one entry pointing to its relevant <code>area</code> method. Your <code>ppoly1</code> will have a <code>vptr</code> pointing to <code>Rectangle</code>'s <code>vtbl</code>, and <code>ppoly2</code> similarly with <code>Triangle</code>'s <code>vtbl</code>. Hope this helps!</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203140#203140 1 Answer by moonshadow for How does the C++ compiler know which implementation of a virtual function to call? moonshadow 2008-10-14T22:47:39Z 2008-10-14T22:47:39Z <p><a href="http://en.wikipedia.org/wiki/Virtual_table" rel="nofollow">Virtual function tables</a>.</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203143#203143 1 Answer by zacharyrsnow for How does the C++ compiler know which implementation of a virtual function to call? zacharyrsnow 2008-10-14T22:48:45Z 2008-10-14T22:48:45Z <p>To answer the second part of your question: that address probably won't have a v-table in the right place, and madness will ensue. Also, it's undefined according to the standard.</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203149#203149 5 Answer by Michael Burr for How does the C++ compiler know which implementation of a virtual function to call? Michael Burr 2008-10-14T22:52:25Z 2008-10-14T22:57:27Z <p><a href="http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call#203136">Chris Jester-Young</a> gives the basic answer to this question.</p> <p><a href="http://en.wikipedia.org/wiki/Virtual_table" rel="nofollow">Wikipedia</a> has a more in depth treatment.</p> <p>If you want to know the full details for how this type of thing works (and for all type of inheritance, including multiple and virtual inheritance), one of the best resources is Stan Lippman's "<a href="http://rads.stackoverflow.com/amzn/click/0201834545" rel="nofollow">Inside the C++ Object Model</a>".</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203167#203167 1 Answer by Adam Pierce for How does the C++ compiler know which implementation of a virtual function to call? Adam Pierce 2008-10-14T23:04:50Z 2008-10-14T23:04:50Z <pre><code>cout &lt;&lt; ((Polygon *)0x12345678)-&gt;area() &lt;&lt; endl; </code></pre> <p>This code is a disaster waiting to happen. The compiler will compile it all right but when it comes to run time, you will not be pointing to a valid v-table and if you are lucky the program will just crash.</p> <p>In C++, you shouldn't use old C-style casts like this, you should use <strong>dynamic_cast</strong> like so:</p> <pre><code>Polygon *obj = dynamic_cast&lt;Polygon *&gt;(0x12345678)-&gt;area(); ASSERT(obj != NULL); cout &lt;&lt; obj-&gt;area() &lt;&lt; endl; </code></pre> <p>dynamic_cast will return NULL if the given pointer is not a valid Polygon object so it will be trapped by the ASSERT.</p> http://stackoverflow.com/questions/203126/how-does-the-c-compiler-know-which-implementation-of-a-virtual-function-to-call/203169#203169 1 Answer by McWafflestix for How does the C++ compiler know which implementation of a virtual function to call? McWafflestix 2008-10-14T23:06:58Z 2008-10-14T23:06:58Z <p>Virtual function tables. To wit, both of your Polygon-derived objects have a virtual function table that contains function pointers to the implementations of all their (non-static) functions; and when you instantiate a Triangle, the virtual function pointer for the area() function points to the Triangle::area() function; when you instantiate a Rectangle, the area() function points to the Rectangle::area() function. Because virtual function pointers are stored along with the data for an object in memory, every time you reference that object as a Polygon, the appropriate area() for that object will be used.</p>