共用方式為


basic_string::const_pointer

提供指標在字串中的 const 項目的型別。

typedef typename allocator_type::const_pointer const_pointer;

備註

這個型別是 allocator_type::const_pointer之同義資料表。

如需型別 字串,它與 char相當於*。

宣告為常數的指標必須初始化,以及在宣告時。 常數指標一定指向相同的記憶體位置,而且可能會指向常數或非常數資料。

範例

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