unary_function Struct
단항 함수 객체 제공 파생된 클래스에서 상속 될 수 있는 형식을 정의 하는 빈 기본 구조체.
template<class Arg, class Result>
struct unary_function {
typedef Arg argument_type;
typedef Result result_type;
};
설명
템플릿을 구조체 형식의 멤버 함수를 정의 하는 클래스를 토대로 result_typeoperator()(constargument_type &) const.
이 유일한 인수 형식으로 이러한 모든 파생된 단항 함수를 참조할 수 있습니다 argument_type 및 반환 형식으로 result_type.
예제
// functional_unary_function.cpp
// compile with: /EHsc
#include <vector>
#include <functional>
#include <algorithm>
#include <iostream>
using namespace std;
// Creation of a user-defined function object
// that inherits from the unary_function base class
class greaterthan10: unary_function<int, bool>
{
public:
result_type operator()(argument_type i)
{
return (result_type)(i > 10);
}
};
int main()
{
vector<int> v1;
vector<int>::iterator Iter;
int i;
for (i = 0; i <= 5; i++)
{
v1.push_back(5 * i);
}
cout << "The vector v1 = ( " ;
for (Iter = v1.begin(); Iter != v1.end(); Iter++)
cout << *Iter << " ";
cout << ")" << endl;
vector<int>::iterator::difference_type result1;
result1 = count_if(v1.begin(), v1.end(), greaterthan10());
cout << "The number of elements in v1 greater than 10 is: "
<< result1 << "." << endl;
}
요구 사항
헤더: <functional>
네임 스페이스: std