basic_string::pointer
Typ, který poskytuje ukazatel na prvek znaků v řetězci nebo poli znaků.
typedef typename allocator_type::pointer pointer;
Poznámky
Typ je synonymum pro allocator_type::pointer.
Pro typ řetězec, je ekvivalentní char *.
Příklad
// 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;
}
Požadavky
Hlavička: <string>
Obor názvů: std