다음을 통해 공유


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