operator< (multiset)
测试,如果运算符左侧的多重集对象比右侧的多个对象设置小于。
bool operator<(
const multiset <Key, Traits, Allocator>& _Left,
const multiset <Key, Traits, Allocator>& _Right
);
参数
_Left
multiset 类型的对象。_Right
multiset 类型的对象。
返回值
true,如果运算符左侧的多重集比与运算符右侧的多重集强小于;为 false。
备注
如果在多重集对象之间的比较基于元素的一种比较成对。 小于两个对象之间的关系。根据第一个不相等对比较元素。
示例
// multiset_op_lt.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int> s1, s2, s3;
int i;
for ( i = 0 ; i < 3 ; i++ )
{
s1.insert ( i );
s2.insert ( i * i );
s3.insert ( i - 1 );
}
if ( s1 < s2 )
cout << "The multiset s1 is less than "
<< "the multiset s2." << endl;
else
cout << "The multiset s1 is not less than "
<< "the multiset s2." << endl;
if ( s1 < s3 )
cout << "The multiset s1 is less than "
<< "the multiset s3." << endl;
else
cout << "The multiset s1 is not less than "
<< "the multiset s3." << endl;
}
要求
标头: <set>
命名空间: std