VC++6.0 error C2440: 'initializing' : cannot convert from 'char [5]' to 'struct people'
RT..急问structbirth{intyear;intmonth;intday;};structpeople{charname[50];stringphone;str...
RT..急问
struct birth
{
int year;
int month;
int day;
};
struct people
{
char name[50];
string phone;
string post;
birth birthday;
};
然后在函数里定义
people a[1]={{"LiYi","12387400", "200240",{1990,1,1}}};
就会报错..
而同学的版本:
struct personT{
char name[15];
char phoneNumber[9];
char code[7];
int year;
int month;
int day;
};
personT person[1]={{"LiYi","12387400","200240",1990,1,1}};
就是没有错的..
求问.. 展开
struct birth
{
int year;
int month;
int day;
};
struct people
{
char name[50];
string phone;
string post;
birth birthday;
};
然后在函数里定义
people a[1]={{"LiYi","12387400", "200240",{1990,1,1}}};
就会报错..
而同学的版本:
struct personT{
char name[15];
char phoneNumber[9];
char code[7];
int year;
int month;
int day;
};
personT person[1]={{"LiYi","12387400","200240",1990,1,1}};
就是没有错的..
求问.. 展开
3个回答
展开全部
你的错误在于people这个结构中定义了string类型的成员,从而导致了不能用initializer list 进行初始化;
什么情况能用initializer list 来进行初始化呢:
(1)An array;数组
(2)A class, structure, or union that does not have constructors, private or protected members, base classes, or virtual functions ;不含有构造函数,私有成员,保护成员,基类或虚函数的类,结构和联合;
string是std的定义的一个容器,从它的实现上看它含有一个保护成员,所以string不能用initializer list 进行初始化;所以你的程序出错了。
你将 string phone;和 string post;修改为 char phone[20];和char post[20];就可以了
什么情况能用initializer list 来进行初始化呢:
(1)An array;数组
(2)A class, structure, or union that does not have constructors, private or protected members, base classes, or virtual functions ;不含有构造函数,私有成员,保护成员,基类或虚函数的类,结构和联合;
string是std的定义的一个容器,从它的实现上看它含有一个保护成员,所以string不能用initializer list 进行初始化;所以你的程序出错了。
你将 string phone;和 string post;修改为 char phone[20];和char post[20];就可以了
追问
嗯。。在VC6里面的确是这个问题..那为什么放到VS2010里面又没有报错了呢?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询