共用方式為


basic_string::c_str

將字串轉換為式的 C++., null 結尾字串的內容。

const value_type *c_str( ) const;

傳回值

已叫用之字串的 C-Style 版本的指標。 指標值在呼叫非 const 函式之後無效,包含解構函式,用於在物件中 basic_string 的類別。

備註

屬於 C++ 樣板類別的型別字串物件 basic_string<char> 不一定是以 null 終止。 null 字元「\0 ' is used as a special character in a C -字串標記字串的結尾,但沒有特殊意義的檔案類型的字串物件,也可以是字串的區段與其他字元。 會從 const char* 的自動轉換為字串,字串,但類別不提供從 C-Style 字串的自動轉換為型別 **basic_string<char>**物件。

不應該修改,,因為這可能無效的指標字串,或是刪除傳回的 C-Style 字串,,因為字串具有有限的存留期和字串是由類別所擁有。

範例

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