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