由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 奇怪的继承问题
相关主题
[合集] 关于template和inheritance的问题请教cpp gz file
Help: who has gcc 4.0 or highera c++ question for template
私有成员不能用类成员函数修改?[合集] 又被羞辱了一把... (转载)
boost::function 的 syntax 问题Default function template arguments
a template counting - anybody understand this?C++ template problem
C++里get array size的问题 (转载)help!无法编译一个package
还有一个问题一个C++ template的问题
一个关于C++ template和overload的问题C++ Q73: template (skillport) (转载)
相关话题的讨论汇总
话题: matrix话题: class话题: template话题: matrixb话题: public
进入Programming版参与讨论
1 (共1页)
h**o
发帖数: 347
1
template class认不出父类的member,如下
#include
using namespace std;
template
class Matrix {
public:
int a;
};
template
class MatrixB: public Matrix{
void print() { cout << a; // a unrecognized
}
};
int main()
{
MatrixB b;
}
X****r
发帖数: 3557
2

using Matrix::a;

【在 h**o 的大作中提到】
: template class认不出父类的member,如下
: #include
: using namespace std;
: template
: class Matrix {
: public:
: int a;
: };
: template
: class MatrixB: public Matrix{

T*******i
发帖数: 4992
3
c++ faq
matrix::a
另外,VC下面是可以compile的。

【在 h**o 的大作中提到】
: template class认不出父类的member,如下
: #include
: using namespace std;
: template
: class Matrix {
: public:
: int a;
: };
: template
: class MatrixB: public Matrix{

t****t
发帖数: 6806
4
haha, VC can compile anything!

【在 T*******i 的大作中提到】
: c++ faq
: matrix::a
: 另外,VC下面是可以compile的。

X****r
发帖数: 3557
5
这个好像早版本的gcc (2.9x?)也是可以编译的……

【在 t****t 的大作中提到】
: haha, VC can compile anything!
t****t
发帖数: 6806
6
好象一直到3.2.x都可以的(?)

【在 X****r 的大作中提到】
: 这个好像早版本的gcc (2.9x?)也是可以编译的……
q*****g
发帖数: 72
7
VC is so "powerful", admire ...

【在 t****t 的大作中提到】
: haha, VC can compile anything!
q*****g
发帖数: 72
8
u 2 bt can remember so many things ...

【在 t****t 的大作中提到】
: 好象一直到3.2.x都可以的(?)
k****f
发帖数: 3794
9
是不是做编译器的?

【在 q*****g 的大作中提到】
: u 2 bt can remember so many things ...
1 (共1页)
进入Programming版参与讨论
相关主题
C++ Q73: template (skillport) (转载)a template counting - anybody understand this?
C++ Q90 - Q92 (转载)C++里get array size的问题 (转载)
C++ Q88: nested non-template class (转载)还有一个问题
C++ templates一个关于C++ template和overload的问题
[合集] 关于template和inheritance的问题请教cpp gz file
Help: who has gcc 4.0 or highera c++ question for template
私有成员不能用类成员函数修改?[合集] 又被羞辱了一把... (转载)
boost::function 的 syntax 问题Default function template arguments
相关话题的讨论汇总
话题: matrix话题: class话题: template话题: matrixb话题: public