I:\QT\this1\person.h:12: error: unknown type name 'string'; did you mean 'std::string'?
时间: 2024-05-08 22:22:10 浏览: 101
这个错误提示告诉你在第12行使用了一个未知的类型名"string"。它建议你可能是想使用标准库中的字符串类型"std::string"。因此,你需要将所有使用"string"的地方改为"std::string"。例如:
```cpp
#include <string> // 需要包含头文件
class Person {
public:
std::string name; // 使用 std::string
int age;
};
```
阅读全文