我的程序中有以下#include
,我正在尝试从控制台应用程序更改为GUI应用程序。我必须手工编写代码。问题是我的程序无法导入字符串头。那是为什么?
#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插件一起使用。
答案 0 :(得分:2)
写std::string
,而不只是string
。