2
#include <iostream>
using namespace std;
template <class T>
class C1
{
public:
int n;
C1(int a)
{
n=a;
}
T mat[50][50];
void readmat()
{
int i,j;
for(i=1; i<=n; i++)for(j=1; j<=n; j++)cin>>mat[i][j];
}
void showmat()
{
int i,j;
for(i=1; i<=n; i++)
{
cout<<endl;
for(j=1; j<=n; j++)cout<<mat[i][j]<<" ";
}
}
};
template <class T>
class C2: public C1<T>
{
C2(int a): C1(a) {};
};
In constructor C2::C2(int)':
error: class 'C2' does not have a field named 'C1'
誰かが私が間違って何をしたか私に説明することができれば、私はほとんどそれをいただければ幸いです。
'C2(INT A):C1(A){};' 'C2でなければならない(INT A):C1(A){} ; ' –
私の投稿にもお答えください。 –