由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] 请教: 模板类之继承的一个小问题
相关主题
问一个inheritance的初级问题template class instantiation问题
C++ Template Question有关 template function 的一个问题
recursive template?C++ template question
C++ Q88: nested non-template class (转载)[合集] simple question
class D:public B;[合集] 又被羞辱了一把... (转载)
What is the difference between class and struct?为什么要用template
请教一个C++继承的问题template question
Any difference between class and typename identifier?共享我的C++面试题目精选
相关话题的讨论汇总
话题: class话题: v1话题: fri话题: oct话题: yanb
进入Programming版参与讨论
1 (共1页)
b***y
发帖数: 2799
1
☆─────────────────────────────────────☆
yanb (牛-不牛) 于 (Fri Oct 7 21:35:18 2005) 提到:
代码如下:
template class A {
protected:
T v1;
};
template class B: public A {
protected:
T v2;
public:
T getv1() {return v1;}
T getv2() {return v2;}
};
int main()
{
return 0;
}
在vc++下面编译没问题; 在gcc 4.0下面竟然出现error: 'v1' was not declared
in this scope. 不知道哪里需要改动一下? 先谢了!
☆─────────────────────────────────────☆
yanb (牛-不牛) 于 (Fri Oct 7 23:42:39 2005) 提到:
没想到还有这么个问题:
http
1 (共1页)
进入Programming版参与讨论
相关主题
共享我的C++面试题目精选class D:public B;
[合集] 关于C++ Class Template编程一问What is the difference between class and struct?
template 疑问请教一个C++继承的问题
请叫一个 template class constructor 的问题Any difference between class and typename identifier?
问一个inheritance的初级问题template class instantiation问题
C++ Template Question有关 template function 的一个问题
recursive template?C++ template question
C++ Q88: nested non-template class (转载)[合集] simple question
相关话题的讨论汇总
话题: class话题: v1话题: fri话题: oct话题: yanb