标题:使用了std空间和<string>头文件的情况下第一个string 出错
取消只看楼主
a99875984
Rank: 2
等 级:论坛游民
帖 子:188
专家分:24
注 册:2012-2-11
结帖率:94.64%
已结贴  问题点数:20 回复次数:4 
使用了std空间和<string>头文件的情况下第一个string 出错
程序代码:
#ifndef people_h_
#define people_h_
#include <string>
using namespace std;

class people
{
private:
    int age;
    sring name; //报错,string标识符为定义
    int no;
    string identity_card;
    string sex;
    string add;
    int birthday;
    int phone;
public:
    people(string a,int b,int c,string d,string e,string f,int g,int h);
    ~people(){};
};
#endif
不知道为什么,string name那报错 ,说string标识符为定义,后面几处都一点事都好的,注释了报错的那处后面几处也没报错。谢谢了
搜索更多相关主题的帖子: people 空间 color 
2013-04-19 08:24
a99875984
Rank: 2
等 级:论坛游民
帖 子:188
专家分:24
注 册:2012-2-11
得分:0 
回复 3楼 zhuxiaoneng
额,又粗心了
2013-04-19 08:47
a99875984
Rank: 2
等 级:论坛游民
帖 子:188
专家分:24
注 册:2012-2-11
得分:0 
回复 2楼 rjsp
如果不用using namespace std的话好像全部的string都要报错,是用std::string吗?
2013-04-19 08:48
a99875984
Rank: 2
等 级:论坛游民
帖 子:188
专家分:24
注 册:2012-2-11
得分:0 
回复 6楼 zhuxiaoneng
但是如果使用,using std::string的话class报错,使用std::string 的话class还有string都要报错
2013-04-19 08:55
a99875984
Rank: 2
等 级:论坛游民
帖 子:188
专家分:24
注 册:2012-2-11
得分:0 
回复 6楼 zhuxiaoneng
是不是还需要一个using std::class??
2013-04-19 08:56



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-404805-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019874 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved