次の方法で共有


basic_string::data

文字列の内容を文字配列に変換します。

const value_type *data( ) const;

戻り値

含める配列の最初の要素へのポインター。文字列の内容、または、配列が空の場合に、逆参照できない非 null ポインター。

解説

C++ のテンプレート クラス basic_string <文字> に属する String 型のオブジェクトは、null で終わる文字列ではありません。 data の戻り値の型は、null 文字が追加されないため、有効な C 文字列ではありません。 空白文字「\0」は、.で特殊文字として使用されています。文字列の末尾を示すために文字列であれば、Object、String 型のオブジェクトで特別な意味を持たない、および他の文字など、文字列オブジェクトの一部だけである場合があります。

文字列定数に char* から自動変換がありますが、String クラスは 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;
}
  

必要条件

ヘッダー: の <文字列>

名前空間: std

参照

関連項目

basic_string クラス