共用方式為


basic_string::pointer

提供指標在字串或字元陣列中的一個項目的型別。

typedef typename allocator_type::pointer pointer;

備註

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

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

範例

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

int main( ) 
{
   using namespace std;
   basic_string<char>::pointer pstr1a = "In Here";
   char *cstr1b = "Out There";
   cout << "The string pstr1a is: " << pstr1a <<  "." << endl;
   cout << "The C-string cstr1b is: " << cstr1b << "." << endl;
}
  
  

需求

標題: <string>

命名空間: std

請參閱

參考

basic_string Class