gpt4 book ai didi

c++ - 不能包含 header

转载 作者:太空狗 更新时间:2023-10-29 21:48:24 26 4
gpt4 key购买 nike

我的程序中有以下 #include,我正试图将其从控制台应用程序更改为 GUI 应用程序。我必须手动编写代码。问题是我的程序无法导入字符串 header 。这是为什么?

#ifndef CATALOG_H_
#define CATALOG_H_
#include <string>


#include "StudentRepository.h"

#include "Student.h"


using namespace std;

class Catalog{
private:
StudentRepository *studRepo;

public:
Catalog(StudentRepository *stre):studRepo(stre){};
~Catalog();
void addNewStudent(string name, int id, int group);
void removeStudent(string name);
void editStudent(string,int,int);
Student seachStudent(string name);
void printStudents();
.
.
.

};

#endif /* CATALOG_H_ */

错误:

Description Resource    Path    Location    Type
Type 'string' could not be resolved Catalog.h /L_6-8_GUI line 25 Semantic Error

PS:我将 Eclipse 与 QT 插件一起使用。

最佳答案

编写std::string,而不仅仅是string

关于c++ - 不能包含 <string> header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10801890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com