Using "super" in C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-11-07T00:52:36Z http://stackoverflow.com/feeds/question/180601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/180601/using-super-in-c 19 Using "super" in C++ paercebal 2008-10-07T21:49:42Z 2009-06-10T16:43:46Z <p>My style of coding includes the following idiom:</p> <pre><code>class Derived : public Base { public : typedef Base super; // note that it could be hidden in protected/private section, instead // Etc. } ; </code></pre> <p>This enables me to use "super" as an alias to Base, for example, in constructors:</p> <pre><code>Derived(int i, int j) : super(i), J(j) { } </code></pre> <p>Or even when calling the method from the base class inside its overriden version:</p> <pre><code>void Derived::doSomething() { super::doSomething() ; // ... And then, do something else } </code></pre> <p>It can even be chained (I have still to find the use for that, though):</p> <pre><code>class DerivedDerived : public Derived { public : typedef Derived super; // note that it could be hidden in protected/private section, instead // Etc. } ; void DerivedDerived::doSomethingElse() { super::doSomethingElse() ; // will call Derived::doSomethingElse() super::super::doSomethingElse() ; // will call Base::doSomethingElse() // ... And then, do something else } </code></pre> <p>Anyway, I find the use of "typedef super" very useful, for example, when Base is either verbose and/or templated.</p> <p>The fact is that super is implemented in Java, as well as in C# (where it is called "base", unless I'm wrong). But C++ lacks this keyword.</p> <p>So, my questions:</p> <ul> <li>is this use of typedef super common/rare/never seen in the code you work with?</li> <li>is this use of typedef super Ok (i.e. do you see strong or not so strong reasons to not use it)?</li> <li>should "super" be a good thing, should it be somewhat standardized in C++, or is this use through a typedef enough already?</li> </ul> <p><b>Edit:</b> Roddy mentionned the fact the typedef should be private. This would mean any derived class would not be able to use it without redeclaring it. But I guess it would also prevent the super::super chaining (but who's gonna cry for that?).</p> <p><b>Edit 2:</b> Now, some months after massively using "super", I wholeheartedly agree with Roddy's viewpoint: "super" should be private. I would upvote his answer twice, but I guess I can't.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180607#180607 0 Answer by Ferruccio for Using "super" in C++ Ferruccio 2008-10-07T21:51:11Z 2008-10-07T21:51:11Z <p>How would this work with multiple inheritance?</p> http://stackoverflow.com/questions/180601/using-super-in-c/180613#180613 1 Answer by James Hopkin for Using "super" in C++ James Hopkin 2008-10-07T21:52:59Z 2008-10-07T21:52:59Z <p>I've quite often seen it used, sometimes as super_t, when the base is a complex template type (<code>boost::iterator_adaptor</code> does this, for example)</p> http://stackoverflow.com/questions/180601/using-super-in-c/180614#180614 6 Answer by Michael Burr for Using "super" in C++ Michael Burr 2008-10-07T21:54:17Z 2008-10-07T21:54:17Z <p>I don't recall seeing this before, but at first glance I like it. As <a href="http://stackoverflow.com/questions/180601/using-super-in-c#180607">Ferruccio</a> notes, it doesn't work well in the face of MI, but MI is more the exception than the rule and there's nothing that says something needs to be usable everywhere to be useful.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180618#180618 0 Answer by Matt Dillard for Using "super" in C++ Matt Dillard 2008-10-07T21:55:39Z 2008-10-07T21:55:39Z <p>I don't know whether it's rare or not, but I've certainly done the same thing.</p> <p>As has been pointed out, the difficulty with making this part of the language itself is when a class makes use of multiple inheritance.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180620#180620 1 Answer by Greg Hewgill for Using "super" in C++ Greg Hewgill 2008-10-07T21:56:49Z 2008-10-07T21:56:49Z <p>After migrating from Turbo Pascal to C++ back in the day, I used to do this in order to have an equivalent for the Turbo Pascal "inherited" keyword, which works the same way. However, after programming in C++ for a few years I stopped doing it. I found I just didn't need it very much.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180623#180623 0 Answer by Scott Langham for Using "super" in C++ Scott Langham 2008-10-07T21:57:45Z 2008-10-07T21:57:45Z <p>I use this from time to time. Just when I find myself typing out the base class type a couple of times, I'll replace it with a typedef similar to yours.</p> <p>I think it can be a good use. As you say, if your base class is a template it can save typing. Also, template classes may take arguments that act as policies for how the template should work. You're free to change the base type without having to fix up all your references to it as long as the interface of the base remains compatible.</p> <p>I think the use through the typedef is enough already. I can't see how it would be built into the language anyway because multiple inheritence means there can be many base classes, so you can typedef it as you see fit for the class you logically feel is the most important base class.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180627#180627 11 Answer by Kristopher Johnson for Using "super" in C++ Kristopher Johnson 2008-10-07T21:59:03Z 2008-10-08T01:27:38Z <p>One problem with this is that if you forget to (re-)define super for derived classes, then any call to super::something will compile fine but will probably not call the desired function.</p> <p>For example:</p> <pre><code>class Base { public: virtual void foo() { ... } }; class Derived: public Base { public: typedef Base super; virtual void foo() { super::foo(); // call superclass implementation // do other stuff ... } }; class DerivedAgain: public Derived { public: virtual void foo() { // Call superclass function super::foo(); // oops, calls Base::foo() rather than Derived::foo() ... } }; </code></pre> <p>(As pointed out by Martin York in the comments to this answer, this problem can be eliminated by making the typedef private rather than public or protected.)</p> http://stackoverflow.com/questions/180601/using-super-in-c/180628#180628 1 Answer by Toji for Using "super" in C++ Toji 2008-10-07T21:59:53Z 2008-10-07T21:59:53Z <p><em>is this use of typedef super common/rare/never seen in the code you work with?</em></p> <p>I have never seen this particular pattern in the C++ code I work with, but that doesn't mean it's not out there.</p> <p><em>is this use of typedef super Ok (i.e. do you see strong or not so strong reasons to not use it)?</em></p> <p>It doesn't allow for multiple inheritance (cleanly, anyway).</p> <p><em>should "super" be a good thing, should it be somewhat standardized in C++, or is this use through a typedef enough already?</em></p> <p>For the above cited reason (multiple inheritance), no. The reason why you see "super" in the other languages you listed is that they only support single inheritance, so there is no confusion as to what "super" is referring to. Granted, in those languages it IS useful but it doesn't really have a place in the C++ data model.</p> <p>Oh, and FYI: C++/CLI supports this concept in the form of the "__super" keyword. Please note, though, that C++/CLI doesn't support multiple inheritance either.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180633#180633 25 Answer by Max Lybbert for Using "super" in C++ Max Lybbert 2008-10-07T22:00:31Z 2009-05-02T08:32:35Z <p>Bjarne Stroustrup mentions in <em>Design and Evolution of C++</em> that super as a keyword was considered by the ISO C++ Standards committee the first time C++ was standardized.</p> <p><strong>EDIT</strong> Now that I have the book, let me correct the history. Dag Bruck proposed this extension, calling the base class "inherited." The proposal mentioned the multiple inheritance issue, and would have flagged ambiguous uses. Even Stroustrup was convinced.</p> <p>After discussion, Dag Bruck (yes, the same person making the proposal) wrote that the proposal was implementable, technically sound, and free of major flaws, and handled multiple inheritance. On the other hand, there wasn't enough bang for the buck, and the committee should handle a thornier problem.</p> <p>And that was when Michael Tiemann showed that a typedef'ed super would work just fine.</p> <p>So, no, this will probably never get standardized.</p> <p><hr /></p> <p>My original history involved Apple invoking the two week rule. That was over a proposal handling method name clashes that can come up with multiple inheritance. If you don't have a copy, <em>Design and Evolution</em> is well worth the cover price. Used copies can be had for about $10.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180634#180634 6 Answer by Roddy for Using "super" in C++ Roddy 2008-10-07T22:00:36Z 2008-10-08T08:57:07Z <p>I've always used "inherited" rather than super. (Probably due to a Delphi background), and I always make it <strong>private</strong>, to avoid the problem when the 'inherited' is erroneously omitted from a class but a subclass tries to use it.</p> <pre><code>class MyClass : public MyBase { private: // Prevents erroneous use by other classes. typedef MyBase inherited; ... </code></pre> <p>My standard 'code template' for creating new classes includes the typedef, so I have little opportunity to accidentally omit it.</p> <p>I don't think the chained "super::super" suggestion is a good idea- If you're doing that, you're probably tied in very hard to a particular hierarchy, and changing it will likely break stuff badly.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180635#180635 9 Answer by Colin Jensen for Using "super" in C++ Colin Jensen 2008-10-07T22:00:46Z 2008-10-07T22:00:46Z <p>Super (or inherited) is Very Good Thing because if you need to stick another inheritance layer in between Base and Derived, you only have to change two things: 1. the "class Base: foo" and 2. the typedef</p> <p>If I recall correctly, the C++ Standards committee was considering adding a keyword for this... until Michael Tiemann pointed out that this typedef trick works.</p> <p>As for multiple inheritance, since it's under programmer control you can do whatever you want: maybe super1 and super2, or whatever.</p> http://stackoverflow.com/questions/180601/using-super-in-c/180685#180685 1 Answer by jdkoftinoff for Using "super" in C++ jdkoftinoff 2008-10-07T22:22:43Z 2008-10-07T22:22:43Z <p>One additional reason to use a typedef for the superclass is when you are using complex templates in the object's inheritance.</p> <p>For instance:</p> <pre><code>template &lt;typename T, size_t C, typename U&gt; class A { ... }; template &lt;typename T&gt; class B : public A&lt;T,99,T&gt; { ... }; </code></pre> <p>In class B it would be ideal to have a typedef for A otherwise you would be stuck repeating it everywhere you wanted to reference A's members.</p> <p>In these cases it can work with multiple inheritance too, but you wouldn't have a typedef named 'super', it would be called 'base_A_t' or something like that.</p> <p>--jeffk++</p> http://stackoverflow.com/questions/180601/using-super-in-c/180747#180747 2 Answer by krujos for Using "super" in C++ krujos 2008-10-07T22:51:55Z 2008-10-07T22:51:55Z <p>FWIW Microsoft has added an extension for <a href="http://msdn.microsoft.com/en-us/library/94dw1w7x(VS.80).aspx" rel="nofollow">__super</a> in their compiler. </p> http://stackoverflow.com/questions/180601/using-super-in-c/181911#181911 0 Answer by Mark Ingram for Using "super" in C++ Mark Ingram 2008-10-08T09:12:20Z 2008-10-08T09:12:20Z <p>I use the __super keyword. But it's Microsoft specific:</p> <p><a href="http://msdn.microsoft.com/en-us/library/94dw1w7x.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/94dw1w7x.aspx</a></p> http://stackoverflow.com/questions/180601/using-super-in-c/181917#181917 2 Answer by Konrad Rudolph for Using "super" in C++ Konrad Rudolph 2008-10-08T09:17:16Z 2008-10-08T09:17:16Z <p>I've seen this idiom employed in many codes and I'm pretty sure I've even seen it somewhere in Boost's libraries. However, as far as I remember the most common name is <code>base</code> (or <code>Base</code>) instead of <code>super</code>.</p> <p>This idiom is especially useful if working with template classes. As an example, consider the following class (from a <a href="http://www.seqan.de/" rel="nofollow">real project</a>):</p> <pre><code>template &lt;typename TText, typename TSpec&gt; class Finder&lt;Index&lt;TText, PizzaChili&lt;TSpec&gt; &gt;, PizzaChiliFinder&gt; : public Finder&lt;Index&lt;TText, PizzaChili&lt;TSpec&gt; &gt;, Default&gt; { typedef Finder&lt;Index&lt;TText, PizzaChili&lt;TSpec&gt; &gt;, Default&gt; TBase; // … } </code></pre> <p>Don't mind the funny names. The important point here is that the inheritance chain uses type arguments to achieve compile-time polymorphism. Unfortunately, the nesting level of these templates gets quite high. Therefore, abbreviations are crucial for readability and maintainability.</p>