operator>= (pair) (STL/CLR)
組大於或等於的比較。
template<typename Value1,
typename Value2>
bool operator>=(pair<Value1, Value2>% left,
pair<Value1, Value2>% right);
參數
left
若要比較的左的組。right
若要比較的權限組。
備註
The operator function returns !(left < right). 您用它來測試是否left之前未經過排序right在兩個配對都比較的項目由項目。
範例
// cliext_pair_operator_ge.cpp
// compile with: /clr
#include <cliext/utility>
int main()
{
cliext::pair<wchar_t, int> c1(L'x', 3);
System::Console::WriteLine("[{0}, {1}]", c1.first, c1.second);
cliext::pair<wchar_t, int> c2(L'x', 4);
System::Console::WriteLine("[{0}, {1}]", c2.first, c2.second);
System::Console::WriteLine("[x 3] >= [x 3] is {0}",
c1 >= c1);
System::Console::WriteLine("[x 3] >= [x 4] is {0}",
c1 >= c2);
return (0);
}
需求
標頭: < cliext/公用程式 >
Namespace: cliext