Udostępnij za pośrednictwem


basic_string::pointer

Typ, który zawiera wskaźnik do elementu znaku w ciągu lub tablicy znaków.

typedef typename allocator_type::pointer pointer;

Uwagi

Typ jest synonimem allocator_type::pointer.

Dla typu ciąg, jest równoważne z char *.

Przykład

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

Wymagania

Nagłówek: <ciąg>

Przestrzeń nazw: std

Zobacz też

Informacje

basic_string — Klasa