less (STL/CLR)
テンプレート クラスは、呼び出されたとき、の場合にのみ true を最初の引数の次の値よりも小さい 2 番目のファンクタを返すついて説明します。引数の型の点でそれを指定して関数オブジェクトを使用します。
template<typename Arg>
ref class less
{ // wrap operator()
public:
typedef Arg first_argument_type;
typedef Arg second_argument_type;
typedef bool result_type;
typedef Microsoft::VisualC::StlClr::BinaryDelegate<
first_argument_type, second_argument_type, result_type>
delegate_type;
less();
less(less<Arg>% right);
result_type operator()(first_argument_type left,
second_argument_type right);
operator delegate_type^();
};
パラメーター
- 引数
引数の型。
メンバー関数
型定義 |
Description |
---|---|
delegate_type |
汎用デリゲートの型。 |
first_argument_type |
ファンクタ最初の引数の型。 |
result_type |
ファンクタの結果の型。 |
second_argument_type |
ファンクタ 2 番目の引数の型。 |
メンバー |
Description |
---|---|
より小さい |
ファンクタを構築します。 |
[演算子] |
Description |
---|---|
演算子 () |
目的の関数を計算します。 |
演算子の delegate_type^ |
デリゲートにファンクタをキャストします。 |
解説
テンプレート クラスは、 2 引数のファンクタについて説明します。これは、オブジェクトが関数として呼び出されると、の場合にのみ true を最初の引数の次の値よりも小さい返すように 2 番目のメンバー演算子を定義します operator() 。
型が delegate_type^ です。適切に変換する関数の引数がため、オブジェクトを渡すことができます。
使用例
// cliext_less.cpp
// compile with: /clr
#include <cliext/algorithm>
#include <cliext/functional>
#include <cliext/vector>
typedef cliext::vector<int> Myvector;
int main()
{
Myvector c1;
c1.push_back(4);
c1.push_back(3);
Myvector c2;
c2.push_back(4);
c2.push_back(4);
Myvector c3(2, 0);
// display initial contents " 4 3" and " 4 4"
for each (int elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
for each (int elem in c2)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// transform and display
cliext::transform(c1.begin(), c1.begin() + 2,
c2.begin(), c3.begin(), cliext::less<int>());
for each (int elem in c3)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
必要条件
ヘッダー: <cliext と機能>
名前空間: の cliext