字符串类在我的电脑中不起作用?这是我的代码,我讨厌在它上面创建一个项目,是否有任何语法错误,我的书使用的确如此,是什么问题?
#include <string>
#ifndef LAB_PROJECT_H
#define LAB_PROJECT_H
struct Node
{
Node* nextptr;
Node* prevptr;
string student_name;
string father_name;
int registration;
string section;
string major;
string area;
};
答案 0 :(得分:5)
例如,您需要使用string
的完全限定名称。
std::string student_name;