Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing protected members from subclasses: gcc vs msvc

In visual C++, I can do things like this:

template <class T>
class A{
protected:
    T i;
};

template <class T>
class B : public A<T>{
    T geti() {return i;}
};

If I try to compile this in g++, I get an error. I have to do this:

template <class T>
class B : public A<T>{
    T geti() {return A<T>::i;}
};

Am I not supposed to do the former in standard C++? Or is something misconfigured with gcc that's giving me errors?

like image 233
Jason Baker Avatar asked Oct 11 '08 19:10

Jason Baker


2 Answers

This used to be allowed, but changed in gcc 3.4.

In a template definition, unqualified names will no longer find members of a dependent base (as specified by [temp.dep]/3 in the C++ standard). For example,

    template <typename T> struct B {
      int m;
      int n;
      int f ();
      int g ();
    };
    int n;
    int g ();
    template <typename T> struct C : B<T> {
      void h ()
      {
        m = 0; // error
        f ();  // error
        n = 0; // ::n is modified
        g ();  // ::g is called
      }
    };

You must make the names dependent, e.g. by prefixing them with this->. Here is the corrected definition of C::h,

    template <typename T> void C<T>::h ()
    {
      this->m = 0;
      this->f ();
      this->n = 0
      this->g ();
    }
like image 179
Brian R. Bondy Avatar answered Sep 22 '22 16:09

Brian R. Bondy


I figured this one out:

  • C++ Super FAQ: "Why am I getting errors when my template-derived-class uses a nested type it inherits from its template-base-class?"
  • C++ Super FAQ: "Why am I getting errors when my template-derived-class uses a member it inherits from its template-base-class?"

Apparently, the first example ISN'T valid C++ and it's bad that msvc takes this. There are solutions posted on the C++ faq lite.

like image 21
Jason Baker Avatar answered Sep 20 '22 16:09

Jason Baker