unordered_multiset::size_type
无符号距离的类型两个元素间的。
typedef T2 size_type;
备注
无符号整数类型描述可以表示任何控件序列的长度的对象。 它介绍此处,实现中定义的类型的 T2同义词。
示例
// std_tr1__unordered_set__unordered_multiset_size_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_multiset<char> Myset;
int main()
{
Myset c1;
Myset::size_type sz = c1.size();
std::cout << "size == " << sz << std::endl;
return (0);
}
要求
**标题:**unordered_set
命名空间: std
请参见
参考
unordered_multiset::difference_type