gpt4 book ai didi

c++ - 字符串不命名类型

转载 作者:行者123 更新时间:2023-11-28 04:59:00 27 4
gpt4 key购买 nike

我正在使用 Net beans 创建银行应用程序我有三个文件Client.h、Client.CPP和main.CPP

//Client.h
#ifndef CLIENT_H
#define CLIENT_H
using namespace std;
class Client {
public:
Client();
Client(const Client& orig);
virtual ~Client();
private:
string fname;
string lname;

};

#endif /* CLIENT_H */

//Client.cpp
#include "Client.h"

Client::Client() {
}

Client::Client(const Client& orig) {
}

Client::~Client() {
}

当我编译我的项目时,出现以下错误尽管我使用的是命名空间标准,但字符串没有命名类型;

最佳答案

#include <string>是需要的。

std 命名空间是一回事,但为了让编译知道字符串名称,你应该告诉它。

关于c++ - 字符串不命名类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46518434/

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