次の方法で共有


basic_string::const_pointer

文字列の [const] の要素へのポインターを提供する型。

typedef typename allocator_type::const_pointer const_pointer;

解説

allocator_type::const_pointer型は、のシノニムです。

型 **[文字列]**の場合、* charと同じです。

const で宣言されたポインターが宣言するときに初期化する必要があります。同じメモリ位置へは常にへのポインターの位置は、定数または定数ではないデータをポイントします。

使用例

// basic_string_const_ptr.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;
   basic_string<char>::const_pointer pstr1a = "In Here";
   const char *cstr1c = "Out There";

   cout << "The string pstr1a is: " << pstr1a <<  "." << endl;
   cout << "The C-string cstr1c is: " << cstr1c << "." << endl;
}
  
  

必要条件

ヘッダー: <string>

名前空間: std

参照

関連項目

basic_string Class