PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > comp.lang.cplus > Nested friend class in nested template problem
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Nested friend class in nested template problem

Réponse
 
LinkBack Outils de la discussion
Vieux 07/12/2007, 14h40   #1
tonvandenheuvel@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Nested friend class in nested template problem

Hi all,

the following code does not compile in gcc 4.0.2:


3 class Outer
4 {
5 class B;
6
7 template<typename T>
8 class A
9 {
10 friend class Outer::B;
11
12 public:
13 A(T t): a(t) { };
14 A() { };
15 protected:
16 T a;
17 };
18
19 class B : public A<int>
20 {
21 public:
22 B(A<int> & a)
23 {
24 b = a.a;
25 }
26
27 int b;
28 };
29 };

The error I get is:

friend.cpp: In constructor 'Outer::B::B(Outer::A<int>&)':
friend.cpp:16: error: 'int Outer::A<int>::a' is protected
friend.cpp:24: error: within this context

Note that when the Outer class is stripped, everything compiles just
fine. What is the problem here?
  Réponse avec citation
Vieux 07/12/2007, 14h50   #2
Victor Bazarov
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Nested friend class in nested template problem

tonvandenheuvel@gmail.com wrote:
> Hi all,
>
> the following code does not compile in gcc 4.0.2:
>
>
> 3 class Outer
> 4 {
> 5 class B;
> 6
> 7 template<typename T>
> 8 class A
> 9 {
> 10 friend class Outer::B;
> 11
> 12 public:
> 13 A(T t): a(t) { };
> 14 A() { };
> 15 protected:
> 16 T a;
> 17 };
> 18
> 19 class B : public A<int>
> 20 {
> 21 public:
> 22 B(A<int> & a)
> 23 {
> 24 b = a.a;
> 25 }
> 26
> 27 int b;
> 28 };
> 29 };


Please don't post line numbers like you have here. It makes it
quite difficult to quickly copy-and-paste your code and compile it.
You can always use *comments* to identify the lines to which the
compiler is referring in its error messages.

Thanks.

>
> The error I get is:
>
> friend.cpp: In constructor 'Outer::B::B(Outer::A<int>&)':
> friend.cpp:16: error: 'int Outer::A<int>::a' is protected
> friend.cpp:24: error: within this context
>
> Note that when the Outer class is stripped, everything compiles just
> fine. What is the problem here?


A buggy compiler?

Your code compiles OK in Comeau online (4.3.9) or VC++ 2005 SP1.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


  Réponse avec citation
Vieux 07/12/2007, 14h51   #3
want.to.be.professer
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Nested friend class in nested template problem

On Dec 7, 10:40 pm, tonvandenheu...@gmail.com wrote:
> Hi all,
>
> the following code does not compile in gcc 4.0.2:
>
> 3 class Outer
> 4 {
> 5 class B;
> 6
> 7 template<typename T>
> 8 class A
> 9 {
> 10 friend class Outer::B;
> 11
> 12 public:
> 13 A(T t): a(t) { };
> 14 A() { };
> 15 protected:
> 16 T a;
> 17 };
> 18
> 19 class B : public A<int>
> 20 {
> 21 public:
> 22 B(A<int> & a)
> 23 {
> 24 b = a.a;
> 25 }
> 26
> 27 int b;
> 28 };
> 29 };
>
> The error I get is:
>
> friend.cpp: In constructor 'Outer::B::B(Outer::A<int>&)':
> friend.cpp:16: error: 'int Outer::A<int>::a' is protected
> friend.cpp:24: error: within this context
>
> Note that when the Outer class is stripped, everything compiles just
> fine. What is the problem here?


Note the error message:'int Outer::A<int>::a' is protected.

B is inherited form A as public inheritance,
So B can only call A's public and private members.
  Réponse avec citation
Vieux 07/12/2007, 15h02   #4
Victor Bazarov
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Nested friend class in nested template problem

want.to.be.professer wrote:
> On Dec 7, 10:40 pm, tonvandenheu...@gmail.com wrote:
>> Hi all,
>>
>> the following code does not compile in gcc 4.0.2:
>>
>> 3 class Outer
>> 4 {
>> 5 class B;
>> 6
>> 7 template<typename T>
>> 8 class A
>> 9 {
>> 10 friend class Outer::B;
>> 11
>> 12 public:
>> 13 A(T t): a(t) { };
>> 14 A() { };
>> 15 protected:
>> 16 T a;
>> 17 };
>> 18
>> 19 class B : public A<int>
>> 20 {
>> 21 public:
>> 22 B(A<int> & a)
>> 23 {
>> 24 b = a.a;
>> 25 }
>> 26
>> 27 int b;
>> 28 };
>> 29 };
>>
>> The error I get is:
>>
>> friend.cpp: In constructor 'Outer::B::B(Outer::A<int>&)':
>> friend.cpp:16: error: 'int Outer::A<int>::a' is protected
>> friend.cpp:24: error: within this context
>>
>> Note that when the Outer class is stripped, everything compiles just
>> fine. What is the problem here?

>
> Note the error message:'int Outer::A<int>::a' is protected.
>
> B is inherited form A as public inheritance,
> So B can only call A's public and private members.


Actually your post made me think a bit more about this, and perhaps
I was too fast to judge GCC as buggy...

Usually the rule is, the derived class is not alloed to access
*another instance's protected members*, but only its own or of
another instace of _its own type_. IOW, you should get an error
in 'foo', but not in 'bar':

class A {
protected:
int a;
};

class B : A {
void foo(A& a) {
a.a; /// error!
}

void bar() {
this->a; // OK
}
};

However, in this particular case, since A<T> makes 'B' its
friend, all the rules about protected access are overridden by
the rules of friendship, which allows access to _all_ members
regardless of their declared access specifiers.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 12h54.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,13662 seconds with 12 queries