다음을 통해 공유


basic_string::const_pointer

에 대 한 포인터를 제공 하는 형식에 const 문자열에서 요소.

typedef typename allocator_type::const_pointer const_pointer;

설명

종류는 동일 allocator_type::const_pointer.

형식에 대 한 문자열, 동일 합니다 char*.

Const 선언 되는 포인터는 선언할 때 초기화 되어야 합니다.항상 const 포인터와 동일한 메모리 위치를 및 상수 또는 비상수 데이터를 가리킬 수 있습니다.

예제

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

int main( ) 
{
   using namespace std;
   basic_string<char>::const_pointer pstr1a = "In Here";
   const char *cstr1c = "Out There";

   cout << "The string pstr1a is: " << pstr1a <<  "." << endl;
   cout << "The C-string cstr1c is: " << cstr1c << "." << endl;
}
  
  

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class