다음을 통해 공유


basic_string::size_type

요소와 인덱스 문자열에서의 수를 나타내는 부호 없는 정수 형식.

typedef typename allocator_type::size_type size_type;

설명

해당 하는 allocator_type::size_type.

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

예제

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

int main( ) 
{
   using namespace std;
   string str1 ( "Hello world" );

   basic_string <char>::size_type sizeStr1, capStr1;
   sizeStr1 = str1.size (  );
   capStr1 = str1.capacity (  );

   cout << "The current size of string str1 is: " 
        << sizeStr1 << "." << endl;
   cout << "The capacity of string str1 is: " << capStr1 
         << "." << endl;
}
  
  

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class