分类: C/C++
2011-12-28 15:27:23
Syntax:
#include
const char* c_str();
The function c_str() returns a const pointer to a regular C string, identical to the current string. The returned string is null-terminated.(返回的字符串以\0结尾—这是c语言中字符串的默认结尾符,所以该函数是将c++中的字符串string格式的变量转化为c中的字符串格式)
Note that since the returned pointer is of type const, the character data that c_str() returns cannot be modified. Furthermore, you do not need to call free() or delete on this pointer.
因为c_str函数的返回值是const char*的,不能直接赋值給char*。
c_str()返回一个客户程序可读不可改(因返回值是const char*)的指向字符数组的指针,不需要手动释放或删除这个指针。
+++++++++++++++++++++++++++++++++
Visual C++ Standard Library
basic_string::c_str
Converts the contents of a string as a C-style, null-terminated string.(返回以"\0"结尾的C-串,标准C中的字符串格式)
Return Value
A pointer to the C-style version of the invoking string. The pointer value is not valid after calling a non-const function, including the destructor, in the basic_string class on the object.
The returned C-style string should not be modified, as this could invalidate the pointer to the string, or deleted, as the string has a limited lifetime and is owned by the class string.
++++++++++++++++++++++++++++++++
string::c_str()函数返回一个const char*指针,作用就是把string类型的变量转化为C-字符串char* (以"\0"作为字符串的默认结尾)
【如果要把一个char 转换成string, 可以使用 string s(char *); 】
c_str函数的返回值是const char*的,不能直接赋值给char* ,所以就需要我们进行相应的操作转化(利用strcpy()函数)。
c++语言提供了两种字符串实现,其中较原始的一种只是字符串的c语言实现。与C语言的其他部分一样,它在c++的所有实现中可用,我们将这种实现提供的字符串对象,归为c-串,每个c-串char*类型的。
标准头文件
+++++++++++++++++++++++++++++++++
语法:
const char *c_str();
c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同.
这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。
注意:一定要使用strcpy()等函数来操作c_str()返回的指针
比如:最好不要这样:
char* c;
string s="1234";
c = s.c_str(); //c最后指向的内容是垃圾,因为s对象被析构,其内容被处理
应该这样用:
char c[20];
string s="1234";
strcpy(c,s.c_str());
这样才不会出错,c_str()返回的是一个临时指针,不能对其进行操作(只能对其拷贝)
再举个例子
c_str() 以 char* 形式传回 string 内含字符串
如果一个函数要求char*参数,可以使用c_str()方法:
string s = "Hello World!";
printf("%s", s.c_str()); //输出 "Hello World!"
const * char c_str() 一个将string转换为 const* char的函数。 string的c_str()返回的指针是由string管理的。它的生命期是string对象的生命期。然后可以按C的方式使用这个指针,或把它的内容复制出来。 例如: string s; cin>>s; const char *ch=s.c_str(); 这样就可以从标准输入里输入任意长的字符串,并按const *char来使用。 其他类型转换方式: string 转 CString char 转 CString ---------------------------------------------------------------------------------------------------------- 以下内容原文出处: 1,string -> CString
将字符转换为整数,可以使用atoi、_atoi64或atol。 void CStrDlg::OnButton1() sart.Format("%s",buf); CString互转char* ///char * TO cstring
标准C里没有string,char *==char []==string 可以用CString.Format("%s",char *)这个方法来将char *转成CString。要把CString转成char *,用操作符(LPCSTR)CString就可以了。
char a[100]; //CString aaa = "16" ;
//CString ss="1212.12";
string mngName; |
++++++++++++++++++++END+++++++++++++++++++