basic_string::c_str

将字符串作为样式的c.,Null终止的字符串的内容。

const value_type *c_str( ) const;

返回值

对调用的字符串的C样式版本的指针。 指针值在调用一个非常量函数后无效,包括析构函数,在对象的basic_string的选件类。

备注

属于C++模板选件类basic_string<char> 不一定为 null 终止的字符串类型对象。 null字符“\ 0 "用作特殊字符在c. -字符串标记该字符串的结尾,但没有特殊含义在类型字符串对象,并且可以是字符串的部分与其他字符。 与常数 char* 的自动转换为字符串中,但是,字符串选件类不提供从C样式字符串的自动转换为类型 **basic_string<char>**对象。

不应修改,因为这可能无效的指针为字符串,或者删除该返回的C样式字符串,因为该字符串具有有限生存期和由选件类拥有字符串。

示例

// basic_string_c_str.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;

   string  str1 ( "Hello world" );
   cout << "The original string object str1 is: " 
        << str1 << endl;
   cout << "The length of the string object str1 = " 
        << str1.length ( ) << endl << endl;

   // Converting a string to an array of characters
   const char *ptr1 = 0;
   ptr1= str1.data ( );
   cout << "The modified string object ptr1 is: " << ptr1 
        << endl;
   cout << "The length of character array str1 = " 
        << strlen ( ptr1) << endl << endl;

   // Converting a string to a C-style string
   const char *c_str1 = str1.c_str ( );
   cout << "The C-style string c_str1 is: " << c_str1 
        << endl;
   cout << "The length of C-style string str1 = " 
        << strlen ( c_str1) << endl << endl;
}
  

要求

标头: <string>

命名空间: std

请参见

参考

basic_string Class