basic_string::data
文字配列に文字列の内容を変換します。
const value_type *data( ) const;
戻り値
文字列の内容を、または、空の配列に対して含む配列の最初の要素へのポインターを逆参照することができない非 null ポインター。
解説
<char> を basic_string C++ テンプレート クラスに属する終了する文字列型のオブジェクトは必ず null ではありません。data の戻り値の型は null 文字が追加されないため、有効な C 文字列ではありません。null 文字 「」 \0 は、. で特殊文字として使用されています。文字列の終わりを示すために文字列のバインダー、型の文字列オブジェクトで特別な意味を持ちませんし、そのほかの文字などの文字列オブジェクトの一部だけである場合があります。
文字列への const 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