次の方法で共有


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