我们在C++的开发中经常会碰到string、char*以及CString,这三种都表示字符串类型,有很多相似又不同的地方,常常让人混淆。下面详细介绍这三者的区别、联系和转换:
各自的区别
char*:
char*是一个指向字符的指针,是一个内置类型。可以指向一个字符,也可以表示字符数组的首地址(首字符的地址)。我们更多的时候是用的它的第二的功能,来表示一个字符串,功能与字符串数组char ch[n]一样,表示字符串时,最后有一个 ‘\0’结束符作为字符串的结束标志。
【例1】
>#include
using namespace std;
void testCharArray()
{
char ch1[12] = “Hello Wrold”; //这里只能ch1[12],ch1[11]编译不通过,提示array bounds overflow
char *pch1 , *pch2 = “string”;
char *pch3, *pch4;
pch3 = &ch1[2]; //ch1[2]的地址赋给pch3
char ch = ‘c’;
pch4 = &ch;
pch1= ch1;
cout << ch1 << endl; //输出ch1[0]到\0之前的所有字符
cout << pch1 << endl; //输出ch1[0]到\0之前的所有字符
cout << pch2 << endl; //输出ch1[0]到\0之前的所有字符
cout << pch3 << endl; //输出ch1[2]到\0之前的所有字符
cout << *pch3 << endl; //解引用pch3输出pch3指向的字符
cout << *pch4 << endl; //解引用pch4输出pch4指向的字符
}
结果为:
Hello Wrold
Hello Wrold
string
llo Wrold
l
C
string:
string是C++标准库(STL)中的类型,它是定义的一个类,定义在头文件中。里面包含了对字符串的各种常用操作,它较char*的优势是内容可以动态拓展,以及对字符串操作的方便快捷,用+号进行字符串的连接是最常用的操作。
【例2】
[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
> #include
void testString()
{
string s1 = “this”;
string s2 = string(” is”);
string s3, s4;
s3 = string(” a”).append(“string.”);
s4 = s1 + s2 + s3;
cout << s1 << endl;
cout << s2 << endl;
cout << s3 << endl;
cout << s4 << endl;
cout << s4.size() << endl;
s4.insert(s4.end()-7, 1, ’ ‘);
cout << s4 << endl;
}
结果为:
this
is
astring.
this is astring.
16
this is a string.
CString
CString常用于MFC编程中,是属于MFC的类,如从对话框中利用GetWindowText得到的字符串就是CString类型,CString定义在