#include<iostream>
using namespace std;
class y;
class x{
class y;
public:
y* py;
}
class y{
class x;
public:
x var;
}
刚才我试了一下
好像还是不行
1>------ 已启动生成: 项目: TShiYan, 配置: Debug Win32 ------
1>正在编译...
1>ShiYan.cpp
1>e:\程序\c++\tshiyan\tshiyan\T_XYlei.h(9) : error C2236: 意外的“class”“y”。是否忘记了“;”?
1>e:\程序\c++\tshiyan\tshiyan\T_XYlei.h(9) : error C2143: 语法错误 : 缺少“;”(在“{”的前面)
1>e:\程序\c++\tshiyan\tshiyan\T_XYlei.h(9) : error C2447: “{”: 缺少函数标题(是否是老式的形式表?)