次の方法で共有


basic_string::c_str

式. C スタイルの null で終わる文字列として文字列の内容を変換します。

const value_type *c_str( ) const;

戻り値

開始文字列 C スタイルのバージョンへのポインター。ポインター値は非 const 関数を、オブジェクトの basic_string クラス デストラクターが、の呼び出し後に無効です。

解説

<char> を basic_string C++ テンプレート クラスに属する終了する文字列型のオブジェクトは必ず null ではありません。null 文字 「」 \0 は、. で特殊文字として使用されています。文字列の終わりを示すために文字列のバインダー、型の文字列オブジェクトで特別な意味を持ちませんし、そのほかの文字など、文字列の一部だけである場合があります。文字列への const 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