使用了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标识符为定义,后面几处都一点事都好的,注释了报错的那处后面几处也没报错。谢谢了										
					
	
 
											





 
	    

