error: ‘string’ does not name a type; did you mean ‘stdin’

在C++编程时遇到错误'error:‘string’doesnotnameatype',原因是忘记在使用string类型时加入命名空间std。修正方法是在string前加上std::,或者使用#include<string.h>但不推荐,因为<string.h>是C语言的头文件。理解C++标准库的使用规范对于避免此类错误至关重要。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

今天写C++ 的时候遇到了这个错误

error: ‘string’ does not name a type; did you mean ‘stdin’

代码如下

#ifndef EMP_H
#define EMP_H
#include <string>
#include <time.h>

class Person{
public:
	string name;
	int age;
	time_t birthday;
	Person(string na,int ag,time_t bir):name(na),age(ag){
		birthday = bir;
	}
};

#endif

看了好一会儿,原来是string是标准库中的,而标准库中的需要加上命名空间std,所以改成

#ifndef EMP_H
#define EMP_H
#include <string>
#include <time.h>

class Person{
public:
	std::string name;
	int age;
	time_t birthday;
	Person(std::string na,int ag,time_t bir):name(na),age(ag){
		birthday = bir;
	}
};

#endif

就可以了,如果我们改成#include <string.h>就不需要加std了,一般.h的头文件是为了兼容C代码,如果使用了标准库一定要加上命名空间。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值