C++错误:missing storage-class or type specifiers
发布网友
发布时间:2024-10-13 07:46
我来回答
共2个回答
热心网友
时间:2024-11-23 11:42
你的工程是VC下的MFC吗?
#include "cstringt.h" //MFC-only string objects
#include "atlstr.h" //Non-MFC string objects
如果不是VC,那你的找到CString的头文件,或者自己实现的CString
热心网友
时间:2024-11-23 11:42
1.在两个结构体声明后面加2行:
typedfe struct Type TType;
typedfe struct Item TItem;
2.将你所有直接使用 Type 换成 TType,Item换成TItem.至于为什么,看看C++的书吧.
3.你的代码中对结构体的理解也有问题,CString 是一个复杂数据类型,不要在结构体中使用.去搜索一下结构体的用法吧..