multiset::difference_type
可用于表示多的元素的数目。一范围元素间的有符号整数类型指向的迭代器。
typedef typename allocator_type::difference_type difference_type;
备注
在减去或增长。容器的迭代器,则 difference_type 是返回的类型。 difference_type 通常用于表示元素数处于范围 [_First, _Last) 在迭代器 _First 和 _Last 之间,包括指向由 _First 和范围元素,但不包括,元素指向的 _Last。
请注意,虽然 difference_type 提供满足要求,输入迭代器包含用于双向迭代器类由诸如的可逆容器集支持所有迭代器,在迭代器之间的减法可由与矢量的随机访问容器提供的随机访问迭代器只支持。
示例
// multiset_diff_type.cpp
// compile with: /EHsc
#include <iostream>
#include <set>
#include <algorithm>
int main( )
{
using namespace std;
multiset <int> ms1;
multiset <int>::iterator ms1_Iter, ms1_bIter, ms1_eIter;
ms1.insert( 20 );
ms1.insert( 10 );
ms1.insert( 20 );
ms1_bIter = ms1.begin( );
ms1_eIter = ms1.end( );
multiset <int>::difference_type df_typ5, df_typ10, df_typ20;
df_typ5 = count( ms1_bIter, ms1_eIter, 5 );
df_typ10 = count( ms1_bIter, ms1_eIter, 10 );
df_typ20 = count( ms1_bIter, ms1_eIter, 20 );
// The keys, and hence the elements, of a multiset are not unique
cout << "The number '5' occurs " << df_typ5
<< " times in multiset ms1.\n";
cout << "The number '10' occurs " << df_typ10
<< " times in multiset ms1.\n";
cout << "The number '20' occurs " << df_typ20
<< " times in multiset ms1.\n";
// Count the number of elements in a multiset
multiset <int>::difference_type df_count = 0;
ms1_Iter = ms1.begin( );
while ( ms1_Iter != ms1_eIter)
{
df_count++;
ms1_Iter++;
}
cout << "The number of elements in the multiset ms1 is: "
<< df_count << "." << endl;
}
要求
标头: <set>
命名空间: std