类只能调用自己的成员函数。而且你放的位置可不是B调用A的函数,你是把A的成员函数当作B的成员函数声明。
你可以这样做
class A
{
public:
static show();
};
static void A::show()
{
cout << “类A的输出”<< endl;
}
class B
{
public:
show();
};
void B::show()
{
A::show();
}
这样就能在B的成员函数里调用A的成员函数啦。