共用方式為


basic_string::data

轉換字串的內容轉換成字元陣列。

const value_type *data( ) const;

傳回值

out 包含字串內容的陣列的第一個項目的指標,或是一個空的陣列,但是無法取值的非 null 指標。

備註

屬於 C++ 樣板類別的型別字串物件 basic_string <char> 不一定是以 null 終止。 因為 null 字元,藉以附加, 資料 的傳回型別不是有效的 C 字串。 null 字元「\0 ' is used as a special character in a C -字串標記字串的結尾,不過,並沒有任何特殊意義的檔案類型的字串物件,也可以是字串物件的區段與其他字元。

會從 const char* 的自動轉換為字串,字串,但類別不提供從 C-Style 字串的自動轉換為型別 **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