Re: Is it me or is it gcc?
On Sep 12, 3:30 pm, Boltar <boltar2...@yahoo.co.uk> wrote:
On Sep 12, 2:14 pm, James Kanze <james.ka...@gmail.com> wrote:
On Sep 12, 2:22 pm, Boltar <boltar2...@yahoo.co.uk> wrote:
On Sep 12, 12:24 pm, Michael DOUBEZ <michael.dou...@free.fr> wrote:
Look up template-dependant
name:http://www.parashift.com/c++-faq-lite/templates.html#faq-35.19
Thats just retarded. What idiot thought that up? Why would
I want "this->" in front of every inherited variable and
class, I might just as well code in C!
The problem is just the opposite. Suppose you have something
like:
extern int wibble ;
template< typename T >
class U : public T
{
public:
int f() { return wibble ; }
} ;
Now what happens if T contains a member wibble? (That's the
official reason---I'm not saying I agree with it.)
But in that example you're inheriting from a template type so
yes, I can see the problem there. In my example however I was
inheriting from one of my own classes that happened to take
template definition parameters. Its not the same thing.
Yes it is. The type of your base class depends on the argument
of the template.
If the template in my example had a member variable "wibble"
it wouldn't make any difference since its obvious from the
code I'm trying to access the member variable from my own
class, not that of any variables created with the template
type because in that case I'd have to do [template type
var].wibble=1
In your example, you inherited from a template, not a class.
The compiler cannot know the contents of this template until it
knows what the template argument will be, and it won't know that
until you instantiate the second template. (Think about
explicit specializations, for example.)
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34