basic_string::data

转换字符串的内容转换为一个字符数组。

const value_type *data( ) const;

返回值

对包含字符串的内容的数组的第一个元素的指针或者,一个空数组的,不能间接引用的非null指针。

备注

属于C++模板选件类basic_string <char> 不一定为 null 终止的字符串类型对象。因为 null 字符不会追加到,data 的返回类型不是有效的C字符串。null字符“\ 0 "用作特殊字符在c. -字符串标记该字符串的结尾,但没有特殊含义在类型字符串对象,也可以是字符串对象的部分与其他字符。

与常数 char* 的自动转换为字符串中,但是,字符串选件类不提供从C样式字符串的自动转换为类型 **basic_string <char>**对象。

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

示例

// basic_string_data.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