(一)string类字符串初始化方法:
(1)定义的时候直接用字符串初始化:string s1="hello";。
(2)定义的时候用字符数组进行初始化:char mess[]="beijing"; string s2=mess;。
(3)定义的时候用另外一个字符串对象进行初始化:string s3=s1;。
(4)先定义,然后再用赋值的方法初始化:string s4;s4="hello";。
(二)字符数组的初始化方法:
(1)使用初始化字符常量列表。
char a[5];
a[5]={'h','e','l','l','0'};
(2)使用初始化字符串常量列表。
char b[]={"hello"};
(一)string类字符串初始化方法:
(1)定义的时候直接用字符串初始化:string s1="hello";。
(2)定义的时候用字符数组进行初始化:char mess[]="beijing"; string s2=mess;。
(3)定义的时候用另外一个字符串对象进行初始化:string s3=s1;。
(4)先定义,然后再用赋值的方法初始化:string s4;s4="hello";。
(二)字符数组的初始化方法:
(1)使用初始化字符常量列表。
char a[5];
a[5]={'h','e','l','l','0'};
(2)使用初始化字符串常量列表。
char b[]={"hello"};