<functional>
函式
這些函式在 C++11 中已被取代,並在 C++17 中移除:
bind1st
bind2nd
mem_fun
mem_fun_ref
ptr_fun
這些函式在 C++17 中已被取代:
bind
將引數繫結至可呼叫物件。
template <class FT, class T1, class T2, ..., class TN>
unspecified bind(FT fn, T1 t1, T2 t2, ..., TN tN);
template <class RTy, class FT, class T1, class T2, ..., class TN>
unspecified bind(FT fn, T1 t1, T2 t2, ..., TN tN);
參數
FT
要呼叫的物件類型。 例如,函式、函式物件、函式指標/參考或成員函式指標的類型。
RTy
傳回類型。 指定時,它會是系結呼叫的傳回型別。 否則,傳回型別是 的傳回型別 FT
。
TN
第 N 個呼叫引數類型。
fn
要呼叫的物件。
tN
第 N 個呼叫引數。
備註
型 FT, T1, T2, ..., TN
別必須是可複製建構的,而且 INVOKE(fn, t1, ..., tN)
必須是某些值 w1, w2, ..., wN
的有效表達式。
第一個範本函式會傳回含弱式結果類型的轉送呼叫包裝函式 g
。 的效果g(u1, u2, ..., uM)
為 INVOKE(f, v1, v2, ..., vN,
invoke_result<FT cv (V1, V2, ..., VN)>::type)
,其中 cv
是的 g
cv 限定符,且系結自變數v1, v2, ..., vN
的值和類型會依下列指定來決定。 您可以使用它將引數繫結至可呼叫的物件,以利用量身訂做的引數清單來製作可呼叫物件。
第二個範本函式會傳回含 result_type
巢狀類型的轉送呼叫包裝函式 g
,該類型與 RTy
同義。 g(u1, u2, ..., uM)
的效果為 INVOKE(f, v1, v2, ..., vN, RTy)
,其中 cv
是 g
的 cv 限定詞,而繫結引數 v1, v2, ..., vN
的值和類型則依下列指定方式來判斷。 您可以使用它將引數繫結至可呼叫的物件,以利用量身訂做的引數清單和指定的傳回類型,來製作可呼叫物件。
繫結引數 v1, v2, ..., vN
的值及其對應的 V1, V2, ..., VN
類型,取決於對 bind
與呼叫包裝函式 g
cv 限定詞 cv
的呼叫中,Ti
類型的對應引數類型 ti
,如下所示:
如果 ti
為類型 reference_wrapper<T>
,則自變數 vi
為 ti.get()
,且其類型 Vi
為 T&
;
如果的值為 std::is_bind_expression<Ti>::value
自變數vi
ti(u1, u2, ..., uM)
,且其類型Vi
為 cv
result_of<Ti
(U1&, U2&, ..., UN&>::type
;true
如果的值j
std::is_placeholder<Ti>::value
不是零,則自變數vi
為 uj
,且其類型Vi
為 Uj&
;
否則,自變數vi
為 ,且其類型Vi
為 &
Ti
cv
。 ti
例如,假設以 f(int, int)
函式來看,運算式 bind(f, _1, 0)
會傳回轉送呼叫包裝函式 cw
,以讓 cw(x)
呼叫 f(x, 0)
。 運算式 bind(f, 0, _1)
會傳回轉送呼叫包裝函式cw
,以讓 cw(x)
呼叫 f(0, x)
。
呼叫 bind
和 自變數 fn
中的自變數數目必須等於可以傳遞至可呼叫物件的 fn
自變數數目。 例如, bind(cos, 1.0)
正確,且和 bind(cos)
bind(cos, _1, 0.0)
都不正確。
針對呼叫 bind
的所有預留位置引數,在呼叫包裝函式的函數呼叫中,由 bind
所傳回的引數數目必須至少與最大編號的 is_placeholder<PH>::value
值一樣大。 例如, bind(cos, _2)(0.0, 1.0)
正確 (並傳 cos(1.0)
回 ),且 bind(cos, _2)(0.0)
不正確。
範例
// std__functional__bind.cpp
// compile with: /EHsc
#include <functional>
#include <algorithm>
#include <iostream>
using namespace std::placeholders;
void square(double x)
{
std::cout << x << "^2 == " << x * x << std::endl;
}
void product(double x, double y)
{
std::cout << x << "*" << y << " == " << x * y << std::endl;
}
int main()
{
double arg[] = { 1, 2, 3 };
std::for_each(&arg[0], arg + 3, square);
std::cout << std::endl;
std::for_each(&arg[0], arg + 3, std::bind(product, _1, 2));
std::cout << std::endl;
std::for_each(&arg[0], arg + 3, std::bind(square, _1));
return (0);
}
1^2 == 1
2^2 == 4
3^2 == 9
1*2 == 2
2*2 == 4
3*2 == 6
1^2 == 1
2^2 == 4
3^2 == 9
bind1st
協助程式範本函式,可建立配接器,將二進位函式物件轉換成一元函式物件。 它會將二進位函式的第一個自變數系結至指定的值。 C++11 中已被取代,C++17 中已移除。
template <class Operation, class Type>
binder1st <Operation> bind1st (const Operation& func, const Type& left);
參數
func
要轉換為一元函式物件的二元函式物件。
left
二元函式物件的第一個引數所要繫結的值。
傳回值
從將二進位函式物件的第一個自變數系結至值 left
所產生的一元函式物件。
備註
函式系結器是一種函式配接器。 因為它們會傳回函式物件,因此可用於特定類型的函式組合,以建構更複雜的強大表達式。
如果 func
是 型 Operation
別的物件,而且 c
是常數,則 bind1st( func, c )
與 binder1st
類別建構函 binder1st<Operation>(func, c)
式相同,而且更方便使用。
範例
// functional_bind1st.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 greaterthan5: unary_function<int, bool>
{
public:
result_type operator()(argument_type i)
{
return (result_type)(i > 5);
}
};
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;
// Count the number of integers > 10 in the vector
vector<int>::iterator::difference_type result1a;
result1a = count_if(v1.begin(), v1.end(), bind1st(less<int>(), 10));
cout << "The number of elements in v1 greater than 10 is: "
<< result1a << "." << endl;
// Compare: counting the number of integers > 5 in the vector
// with a user defined function object
vector<int>::iterator::difference_type result1b;
result1b = count_if(v1.begin(), v1.end(), greaterthan5());
cout << "The number of elements in v1 greater than 5 is: "
<< result1b << "." << endl;
// Count the number of integers < 10 in the vector
vector<int>::iterator::difference_type result2;
result2 = count_if(v1.begin(), v1.end(), bind2nd(less<int>(), 10));
cout << "The number of elements in v1 less than 10 is: "
<< result2 << "." << endl;
}
The vector v1 = ( 0 5 10 15 20 25 )
The number of elements in v1 greater than 10 is: 3.
The number of elements in v1 greater than 5 is: 4.
The number of elements in v1 less than 10 is: 2.
bind2nd
協助程式範本函式,可建立配接器,將二進位函式物件轉換成一元函式物件。 它會將二進位函式的第二個自變數系結至指定的值。 C++11 中已被取代,C++17 中已移除。
template <class Operation, class Type>
binder2nd <Operation> bind2nd(const Operation& func, const Type& right);
參數
func
要轉換為一元函式物件的二元函式物件。
right
二元函式物件的第二個引數所要繫結的值。
傳回值
將二進位函式物件的第二個自變數系結至 right
的一元函式對象結果。
備註
函式系結器是一種函式配接器。 因為它們會傳回函式物件,因此可用於特定類型的函式組合,以建構更複雜的強大表達式。
如果 func
是 型 Operation
別的物件,而且 c
是常數,則 bind2nd(func, c)
與 binder2nd
類別建構函 binder2nd<Operation>(func, c)
式相同,而且更方便使用。
範例
// functional_bind2nd.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 greaterthan15: unary_function<int, bool>
{
public:
result_type operator()(argument_type i)
{
return (result_type)(i > 15);
}
};
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;
// Count the number of integers > 10 in the vector
vector<int>::iterator::difference_type result1a;
result1a = count_if(v1.begin(), v1.end(), bind2nd(greater<int>(), 10));
cout << "The number of elements in v1 greater than 10 is: "
<< result1a << "." << endl;
// Compare counting the number of integers > 15 in the vector
// with a user-defined function object
vector<int>::iterator::difference_type result1b;
result1b = count_if(v1.begin(), v1.end(), greaterthan15());
cout << "The number of elements in v1 greater than 15 is: "
<< result1b << "." << endl;
// Count the number of integers < 10 in the vector
vector<int>::iterator::difference_type result2;
result2 = count_if(v1.begin(), v1.end(), bind1st(greater<int>(), 10));
cout << "The number of elements in v1 less than 10 is: "
<< result2 << "." << endl;
}
The vector v1 = ( 0 5 10 15 20 25 )
The number of elements in v1 greater than 10 is: 3.
The number of elements in v1 greater than 15 is: 2.
The number of elements in v1 less than 10 is: 2.
bit_and
預先定義的函式物件,在其自變數上執行位AND運算(二進位 operator&
)。
template <class Type = void>
struct bit_and : public binary_function<Type, Type, Type
{
Type operator()(
const Type& Left,
const Type& Right) const;
};
// specialized transparent functor for operator&
template <>
struct bit_and<void>
{
template <class T, class U>
auto operator()(T&& Left, U&& Right) const ->
decltype(std::forward<T>(Left) & std::forward<U>(Right));
};
參數
Type
、 、 T
U
支援 operator&
的任何類型,其接受指定或推斷類型的運算元。
Left
位元 AND 運算的左運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完美地轉送 T
推斷類型的左值和右值參考引數。
Right
位元 AND 運算的右運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完美地轉送 U
推斷類型的左值和右值參考引數。
傳回值
Left & Right
的結果。 此特製化的範本會完美地轉送結果,其具有 operator&
所傳回的類型。
備註
對於基本資料類型,bit_and
仿函數僅限於整數類型,或會實作二元 operator&
的使用者定義類型。
bit_not
預先定義的函式物件,在其自變數上執行位補碼 (NOT) 運算 (一元 operator~
)。 已在 C++14 中新增。
template <class Type = void>
struct bit_not : public unary_function<Type, Type>
{
Type operator()(const Type& Right) const;
};
// specialized transparent functor for operator~
template <>
struct bit_not<void>
{
template <class Type>
auto operator()(Type&& Right) const -> decltype(~std::forward<Type>(Right));
};
參數
Type
支援一元 operator~
的類型。
Right
位元補數運算的運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完整轉寄 Type
推斷類型的左值或右值參考引數。
傳回值
~ Right
的結果。 此特製化的範本會完美地轉送結果,其具有 operator~
所傳回的類型。
備註
對於基本資料類型,bit_not
仿函數僅限於整數類型,或會實作二元 operator~
的使用者定義類型。
bit_or
預先定義的函式物件,在其自變數上執行位 OR 運算 (operator|
)。
template <class Type = void>
struct bit_or : public binary_function<Type, Type, Type>
{
Type operator()(
const Type& Left,
const Type& Right) const;
};
// specialized transparent functor for operator|
template <>
struct bit_or<void>
{
template <class T, class U>
auto operator()(T&& Left, U&& Right) const
-> decltype(std::forward<T>(Left) | std::forward<U>(Right));
};
參數
Type
、 、 T
U
支援 operator|
的任何類型,其接受指定或推斷類型的運算元。
Left
位元 OR 運算的左運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完美地轉送 T
推斷類型的左值和右值參考引數。
Right
位元 OR 運算的右運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完美地轉送 U
推斷類型的左值和右值參考引數。
傳回值
Left | Right
的結果。 此特製化的範本會完美地轉送結果,其具有 operator|
所傳回的類型。
備註
對於基本資料類型,bit_or
函式僅限於整數類型,或會實作 operator|
的使用者定義類型。
bit_xor
預先定義的函式物件,在其自變數上執行位 XOR 運算(二進位 operator^
)。
template <class Type = void>
struct bit_xor : public binary_function<Type, Type, Type>
{
Type operator()(
const Type& Left,
const Type& Right) const;
};
// specialized transparent functor for operator^
template <>
struct bit_xor<void>
{
template <class T, class U>
auto operator()(T&& Left, U&& Right) const
-> decltype(std::forward<T>(Left) ^ std::forward<U>(Right));
};
參數
Type
、 、 T
U
支援 operator^
的任何類型,其接受指定或推斷類型的運算元。
Left
位元 XOR 運算的左運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完美地轉送 T
推斷類型的左值和右值參考引數。
Right
位元 XOR 運算的右運算元。 此未特製化的範本接受 Type
類型的左值參考引數。 此特製化的範本會完美地轉送 U
推斷類型的左值和右值參考引數。
傳回值
Left ^ Right
的結果。 此特製化的範本會完美地轉送結果,其具有 operator^
所傳回的類型。
備註
對於基本資料類型,bit_xor
仿函數僅限於整數類型,或會實作二元 operator^
的使用者定義類型。
cref
從引數建構常數reference_wrapper
。
template <class Ty>
reference_wrapper<const Ty> cref(const Ty& arg);
template <class Ty>
reference_wrapper<const Ty> cref(const reference_wrapper<Ty>& arg);
參數
Ty
要包裝的引數類型。
arg
要包裝的引數。
備註
第一個函式會傳回 reference_wrapper<const Ty>(arg.get())
。 您可以使用此項目,來包裝 const 參考。 第二個函式會傳回 reference_wrapper<const Ty>(arg)
。 您可以使用此項目,將已包裝的參考重新包裝為 const 參考。
範例
// std__functional__cref.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
int i = 1;
std::cout << "i = " << i << std::endl;
std::cout << "cref(i) = " << std::cref(i) << std::endl;
std::cout << "cref(neg)(i) = "
<< std::cref(&neg)(i) << std::endl;
return (0);
}
i = 1
cref(i) = 1
cref(neg)(i) = -1
invoke
使用指定的自變數叫用任何可呼叫的物件。 已在 C++17 中新增。
template <class Callable, class... Args>
invoke_result_t<Callable, Args...>
invoke(Callable&& fn, Args&&... args) noexcept(/* specification */);
參數
Callable
要呼叫的物件類型。
Args
呼叫自變數的類型。
fn
要呼叫的物件。
args
呼叫的引數。
specification
規格 noexcept
std::is_nothrow_invocable_v<Callable, Args>)
。
備註
使用 參數args
叫用可呼叫的物件fn
。 實際上, INVOKE(std::forward<Callable>(fn), std::forward<Args>(args)...)
虛擬函 INVOKE(f, t1, t2, ..., tN)
式表示下列其中一項:
(t1.*f)(t2, ..., tN)
:當f
是T
類別的成員函式指標,而且t1
是T
類型的物件、T
類型的物件參考或衍生自T
之類型的物件參考時。 也就是說,當 為 true 時std::is_base_of<T, std::decay_t<decltype(t1)>>::value
。(t1.get().*f)(t2, ..., tN)
當f
是 類別T
成員函式的指標,且std::decay_t<decltype(t1)>
是的std::reference_wrapper
特製化。((*t1).*f)(t2, ..., tN)
當f
是類別T
成員函式的指標,而且t1
不是先前類型的其中一個。t1.*f
:當 N == 1,f
是T
類別的成員資料指標,而且t1
是T
類型的物件、T
類型的物件參考或衍生自T
之類型的物件參考時。 也就是說,當 為 true 時std::is_base_of<T, std::decay_t<decltype(t1)>>::value
。t1.get().*f
當 N == 1 且f
是 類別T
成員數據的指標,且std::decay_t<decltype(t1)>
是 的std::reference_wrapper
特製化時。(*t1).*f
當 N == 1 且f
是類別T
成員數據的指標,且t1
不是先前類型的其中一個時。f(t1, t2, ..., tN)
:其他所有情況。
如需可呼叫對象結果類型的相關信息,請參閱 invoke_result。 如需可呼叫型別的述詞,請參閱 is_invocable、is_invocable_r、is_nothrow_invocable、is_nothrow_invocable_r類別。
範例
// functional_invoke.cpp
// compile using: cl /EHsc /std:c++17 functional_invoke.cpp
#include <functional>
#include <iostream>
struct Demo
{
int n_;
Demo(int const n) : n_{n} {}
void operator()( int const i, int const j ) const
{
std::cout << "Demo operator( " << i << ", "
<< j << " ) is " << i * j << "\n";
}
void difference( int const i ) const
{
std::cout << "Demo.difference( " << i << " ) is "
<< n_ - i << "\n";
}
};
void divisible_by_3(int const i)
{
std::cout << i << ( i % 3 == 0 ? " is" : " isn't" )
<< " divisible by 3.\n";
}
int main()
{
Demo d{ 42 };
Demo * pd{ &d };
auto pmf = &Demo::difference;
auto pmd = &Demo::n_;
// Invoke a function object, like calling d( 3, -7 )
std::invoke( d, 3, -7 );
// Invoke a member function, like calling
// d.difference( 29 ) or (d.*pmf)( 29 )
std::invoke( &Demo::difference, d, 29 );
std::invoke( pmf, pd, 13 );
// Invoke a data member, like access to d.n_ or d.*pmd
std::cout << "d.n_: " << std::invoke( &Demo::n_, d ) << "\n";
std::cout << "pd->n_: " << std::invoke( pmd, pd ) << "\n";
// Invoke a stand-alone (free) function
std::invoke( divisible_by_3, 42 );
// Invoke a lambda
auto divisible_by_7 = []( int const i )
{
std::cout << i << ( i % 7 == 0 ? " is" : " isn't" )
<< " divisible by 7.\n";
};
std::invoke( divisible_by_7, 42 );
}
Demo operator( 3, -7 ) is -21
Demo.difference( 29 ) is 13
Demo.difference( 13 ) is 29
d.n_: 42
pd->n_: 42
42 is divisible by 3.
42 is divisible by 7.
mem_fn
產生簡單呼叫包裝函式。
template <class RTy, class Ty>
unspecified mem_fn(RTy Ty::*pm);
參數
RTy
包裝函式的傳回類型。
Ty
成員函式指標的類型。
備註
樣板函式會傳回具有弱式結果類型的簡單呼叫包裝函 cw
式,因此表達式 cw(t, a2, ..., aN)
與 INVOKE(pm, t, a2, ..., aN)
相同。 它不會擲回任何例外狀況。
傳回的呼叫包裝函式衍生自 std::unary_function<cv Ty*, RTy>
(並將巢狀型result_type
別定義為 同義字,且巢狀類型argument_type
為同義cv Ty*
RTy
字),只有在類型Ty
是具有不採用自變數之 cv 限定符cv
的成員函式指標時。
傳回的呼叫包裝函式衍生自 std::binary_function<cv Ty*, T2, RTy>
(並將巢狀類型result_type
定義為 的同義字、巢狀類型first argument_type
作為 的同義RTy
cv Ty*
字,以及巢狀類型second argument_type
作為同義字T2
),只有在類型Ty
是具有一個自變數之 cv 限定符cv
的成員函式指標時, T2
類型才會產生 。
範例
// std__functional__mem_fn.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
class Funs
{
public:
void square(double x)
{
std::cout << x << "^2 == " << x * x << std::endl;
}
void product(double x, double y)
{
std::cout << x << "*" << y << " == " << x * y << std::endl;
}
};
int main()
{
Funs funs;
std::mem_fn(&Funs::square)(funs, 3.0);
std::mem_fn(&Funs::product)(funs, 3.0, 2.0);
return (0);
}
3^2 == 9
3*2 == 6
mem_fun
協助程式樣板函式,可用來建構使用指標引數初始化時之成員函式的物件配接器。 在和 C++11 mem_fn
bind
中已被取代,並在 C++17 中移除。
template <class Result, class Type>
mem_fun_t<Result, Type> mem_fun (Result(Type::* pMem)());
template <class Result, class Type, class Arg>
mem_fun1_t<Result, Type, Arg> mem_fun(Result (Type::* pMem)(Arg));
template <class Result, class Type>
const_mem_fun_t<Result, Type> mem_fun(Result (Type::* pMem)() const);
template <class Result, class Type, class Arg>
const_mem_fun1_t<Result, Type, Arg> mem_fun(Result (Type::* pMem)(Arg) const);
參數
pMem
要轉換成函式物件之 Type
類別的成員函式指標。
傳回值
const
或 型mem_fun_t
別為 的非 const 函式物件。mem_fun1_t
範例
// functional_mem_fun.cpp
// compile with: /EHsc
#include <vector>
#include <functional>
#include <algorithm>
#include <iostream>
using namespace std;
class StoreVals
{
int val;
public:
StoreVals() { val = 0; }
StoreVals(int j) { val = j; }
bool display() { cout << val << " "; return true; }
int squareval() { val *= val; return val; }
int lessconst(int k) {val -= k; return val; }
};
int main( )
{
vector<StoreVals *> v1;
StoreVals sv1(5);
v1.push_back(&sv1);
StoreVals sv2(10);
v1.push_back(&sv2);
StoreVals sv3(15);
v1.push_back(&sv3);
StoreVals sv4(20);
v1.push_back(&sv4);
StoreVals sv5(25);
v1.push_back(&sv5);
cout << "The original values stored are: " ;
for_each(v1.begin(), v1.end(), mem_fun<bool, StoreVals>(&StoreVals::display));
cout << endl;
// Use of mem_fun calling member function through a pointer
// square each value in the vector using squareval ()
for_each(v1.begin(), v1.end(), mem_fun<int, StoreVals>(&StoreVals::squareval));
cout << "The squared values are: " ;
for_each(v1.begin(), v1.end(), mem_fun<bool, StoreVals>(&StoreVals::display));
cout << endl;
// Use of mem_fun1 calling member function through a pointer
// subtract 5 from each value in the vector using lessconst ()
for_each(v1.begin(), v1.end(),
bind2nd (mem_fun1<int, StoreVals,int>(&StoreVals::lessconst), 5));
cout << "The squared values less 5 are: " ;
for_each(v1.begin(), v1.end(), mem_fun<bool, StoreVals>(&StoreVals::display));
cout << endl;
}
mem_fun_ref
Helper 範本函式,用以在使用參考引數初始化時建構成員函式的物件配接器。 C++11 中已被取代,C++17 中已移除。
template <class Result, class Type>
mem_fun_ref_t<Result, Type> mem_fun_ref(Result (Type::* pMem)());
template <class Result, class Type, class Arg>
mem_fun1_ref_t<Result, Type, Arg> mem_fun_ref(Result (Type::* pMem)(Arg));
template <class Result, class Type>
const_mem_fun_ref_t<Result, Type> mem_fun_ref(Result Type::* pMem)() const);
template <class Result, class Type, class Arg>
const_mem_fun1_ref_t<Result, Type, Arg> mem_fun_ref(Result (T::* pMem)(Arg) const);
參數
pMem
要轉換成函式物件之 Type
類別的成員函式指標。
傳回值
類別為 mem_fun_ref_t
或 mem_fun1_ref_t
的 const
或 non_const
函式物件 。
範例
// functional_mem_fun_ref.cpp
// compile with: /EHsc
#include <vector>
#include <functional>
#include <algorithm>
#include <iostream>
using namespace std;
class NumVals
{
int val;
public:
NumVals ( ) { val = 0; }
NumVals ( int j ) { val = j; }
bool display ( ) { cout << val << " "; return true; }
bool isEven ( ) { return ( bool ) !( val %2 ); }
bool isPrime( )
{
if (val < 2) { return true; }
for (int i = 2; i <= val / i; ++i)
{
if (val % i == 0) { return false; }
}
return true;
}
};
int main( )
{
vector <NumVals> v1 ( 13 ), v2 ( 13 );
vector <NumVals>::iterator v1_Iter, v2_Iter;
int i, k;
for ( i = 0; i < 13; i++ ) v1 [ i ] = NumVals ( i+1 );
for ( k = 0; k < 13; k++ ) v2 [ k ] = NumVals ( k+1 );
cout << "The original values stored in v1 are: " ;
for_each( v1.begin( ), v1.end( ),
mem_fun_ref ( &NumVals::display ) );
cout << endl;
// Use of mem_fun_ref calling member function through a reference
// remove the primes in the vector using isPrime ( )
v1_Iter = remove_if ( v1.begin( ), v1.end( ),
mem_fun_ref ( &NumVals::isPrime ) );
cout << "With the primes removed, the remaining values in v1 are: " ;
for_each( v1.begin( ), v1_Iter,
mem_fun_ref ( &NumVals::display ) );
cout << endl;
cout << "The original values stored in v2 are: " ;
for_each( v2.begin( ), v2.end( ),
mem_fun_ref ( &NumVals::display ) );
cout << endl;
// Use of mem_fun_ref calling member function through a reference
// remove the even numbers in the vector v2 using isEven ( )
v2_Iter = remove_if ( v2.begin( ), v2.end( ),
mem_fun_ref ( &NumVals::isEven ) );
cout << "With the even numbers removed, the remaining values are: " ;
for_each( v2.begin( ), v2_Iter,
mem_fun_ref ( &NumVals::display ) );
cout << endl;
}
The original values stored in v1 are: 1 2 3 4 5 6 7 8 9 10 11 12 13
With the primes removed, the remaining values in v1 are: 4 6 8 9 10 12
The original values stored in v2 are: 1 2 3 4 5 6 7 8 9 10 11 12 13
With the even numbers removed, the remaining values are: 1 3 5 7 9 11 13
not1
傳回一元述詞的補數。 在 C++17 中已被 not_fn
取代。
template <class UnaryPredicate>
unary_negate<UnaryPredicate> not1(const UnaryPredicate& predicate);
參數
predicate
要變為負值的一元述詞。
傳回值
一元述詞,其為所修改之一元述詞的負值。
備註
unary_negate
如果 從一元述predicate(x)
詞建構 ,則會傳!predicate(x)
回 。
範例
// functional_not1.cpp
// compile with: /EHsc
#include <vector>
#include <functional>
#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
vector<int> v1;
vector<int>::iterator Iter;
int i;
for (i = 0; i <= 7; 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;
// Count the elements greater than 10
result1 = count_if(v1.begin(), v1.end(), bind2nd(greater<int>(), 10));
cout << "The number of elements in v1 greater than 10 is: "
<< result1 << "." << endl;
vector<int>::iterator::difference_type result2;
// Use the negator to count the elements less than or equal to 10
result2 = count_if(v1.begin(), v1.end(),
not1(bind2nd(greater<int>(), 10)));
cout << "The number of elements in v1 not greater than 10 is: "
<< result2 << "." << endl;
}
The vector v1 = ( 0 5 10 15 20 25 30 35 )
The number of elements in v1 greater than 10 is: 5.
The number of elements in v1 not greater than 10 is: 3.
not2
傳回二元述詞的補數。 在 C++17 中已被 not_fn
取代。
template <class BinaryPredicate>
binary_negate<BinaryPredicate> not2(const BinaryPredicate& func);
參數
func
要變為負值的二元述詞。
傳回值
二元述詞,其為所修改之二元述詞的負值。
備註
binary_negate
如果從二進位述binary_predicate(x, y)
詞建構 ,則會傳!binary_predicate(x, y)
回 。
範例
// functional_not2.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
vector <int>::iterator Iter1;
int i;
v1.push_back( 6262 );
v1.push_back( 6262 );
for ( i = 0 ; i < 5 ; i++ )
{
v1.push_back( rand( ) );
}
cout << "Original vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
// To sort in ascending order,
// use default binary predicate less<int>( )
sort( v1.begin( ), v1.end( ) );
cout << "Sorted vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
// To sort in descending order,
// use the binary_negate helper function not2
sort( v1.begin( ), v1.end( ), not2(less<int>( ) ) );
cout << "Resorted vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
}
Original vector v1 = ( 6262 6262 41 18467 6334 26500 19169 )
Sorted vector v1 = ( 41 6262 6262 6334 18467 19169 26500 )
Resorted vector v1 = ( 26500 19169 18467 6334 6262 6262 41 )
not_fn
函 not_fn
式範本會採用可呼叫的物件,並傳回可呼叫的物件。 當傳回的可呼叫物件稍後使用某些自變數叫用時,它會將它們傳遞至原始可呼叫的物件,並以邏輯方式否定結果。 它會保留已包裝可呼叫物件的 const 限定性和值類別行為。 not_fn
是 C++17 中的新功能,並取代已被取代的 std::not1
、 std::not2
、 std::unary_negate
和 std::binary_negate
。
template <class Callable>
/* unspecified */ not_fn(Callable&& func);
參數
func
用來建構轉送呼叫包裝函式的可呼叫物件。
備註
此樣板函式會根據這個僅限說明的類別,傳回類似的 return call_wrapper(std::forward<Callable>(func))
呼叫包裝函式:
class call_wrapper
{
using FD = decay_t<Callable>;
explicit call_wrapper(Callable&& func);
public:
call_wrapper(call_wrapper&&) = default;
call_wrapper(call_wrapper const&) = default;
template<class... Args>
auto operator()(Args&&...) & -> decltype(!declval<invoke_result_t<FD&(Args...)>>());
template<class... Args>
auto operator()(Args&&...) const& -> decltype(!declval<invoke_result_t<FD const&(Args...)>>());
template<class... Args>
auto operator()(Args&&...) && -> decltype(!declval<invoke_result_t<FD(Args...)>>());
template<class... Args>
auto operator()(Args&&...) const&& -> decltype(!declval<invoke_result_t<FD const(Args...)>>());
private:
FD fd;
};
可呼叫物件 func
上的明確建構函式需要型 std::decay_t<Callable>
別才能滿足 的需求 MoveConstructible
,而且 is_constructible_v<FD, Callable>
必須是 true。 它會從 std::forward<Callable>(func)
初始化包裝的可呼叫物件fd
,並擲回建構 fd
所擲回的任何例外狀況。
包裝函式會公開以左值或右值參考類別和 const 限定性區分的呼叫運算符,如下所示:
template<class... Args> auto operator()(Args&&... args) & -> decltype(!declval<invoke_result_t<FD&(Args...)>>());
template<class... Args> auto operator()(Args&&... args) const& -> decltype(!declval<invoke_result_t<FD const&(Args...)>>());
template<class... Args> auto operator()(Args&&... args) && -> decltype(!declval<invoke_result_t<FD(Args...)>>());
template<class... Args> auto operator()(Args&&... args) const&& -> decltype(!declval<invoke_result_t<FD const(Args...)>>());
前兩個與相同 return !std::invoke(fd, std::forward<Args>(args)...)
。 第二個兩個與 相同 return !std::invoke(std::move(fd), std::forward<Args>(args)...)
。
範例
// functional_not_fn_.cpp
// compile with: /EHsc /std:c++17
#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>
int main()
{
std::vector<int> v1 = { 99, 6264, 41, 18467, 6334, 26500, 19169 };
auto divisible_by_3 = [](int i){ return i % 3 == 0; };
std::cout << "Vector v1 = ( " ;
for (const auto& item : v1)
{
std::cout << item << " ";
}
std::cout << ")" << std::endl;
// Count the number of vector elements divisible by 3.
int divisible =
std::count_if(v1.begin(), v1.end(), divisible_by_3);
std::cout << "Elements divisible by three: "
<< divisible << std::endl;
// Count the number of vector elements not divisible by 3.
int not_divisible =
std::count_if(v1.begin(), v1.end(), std::not_fn(divisible_by_3));
std::cout << "Elements not divisible by three: "
<< not_divisible << std::endl;
}
Vector v1 = ( 99 6264 41 18467 6334 26500 19169 )
Elements divisible by three: 2
Elements not divisible by three: 5
ptr_fun
Helper 範本函式,可用來將一元和二元函式指標分別轉換成一元和二元可調適性函式。 C++11 中已被取代,C++17 中已移除。
template <class Arg, class Result>
pointer_to_unary_function<Arg, Result, Result (*)(Arg)> ptr_fun(Result (*pfunc)(Arg));
template <class Arg1, class Arg2, class Result>
pointer_to_binary_function<Arg1, Arg2, Result, Result (*)(Arg1, Arg2)> ptr_fun(Result (*pfunc)(Arg1, Arg2));
參數
pfunc
要轉換成可調適性函式的一元或二元函式指標。
傳回值
第一個樣本函式會傳回一元函式Arg
<pointer_to_unary_function(Result
>* )。 pfunc
第二個範本函式會傳回二進位函式<Arg1
pointer_to_binary_function 、>Result
Arg2
(* )。 pfunc
備註
函式指標是函式物件。 它可能會傳遞至任何預期函式做為參數的演算法,但無法調整。 需要其巢狀類型的相關信息,才能將它與配接器搭配使用,例如,將值系結至配接器或將其否定。 由 ptr_fun
helper 函式進行的一元和二元函式指標轉換,可讓函式配接器使用一元和二元函式指標。
範例
// functional_ptr_fun.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <functional>
#include <cstring>
#include <iostream>
int main( )
{
using namespace std;
vector <char*> v1;
vector <char*>::iterator Iter1, RIter;
v1.push_back ( "Open" );
v1.push_back ( "up" );
v1.push_back ( "the" );
v1.push_back ( "opalescent" );
v1.push_back ( "gates" );
cout << "Original sequence contains: " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; ++Iter1 )
cout << *Iter1 << " ";
cout << endl;
// To search the sequence for "opalescent"
// use a pointer_to_function conversion
RIter = find_if( v1.begin( ), v1.end( ),
not1 ( bind2nd (ptr_fun ( strcmp ), "opalescent" ) ) );
if ( RIter != v1.end( ) )
{
cout << "Found a match: "
<< *RIter << endl;
}
}
ref
從引數建構 reference_wrapper
。
template <class Ty>
reference_wrapper<Ty> ref(Ty& arg);
template <class Ty>
reference_wrapper<Ty> ref(reference_wrapper<Ty>& arg);
傳回值
arg
的參考,尤其是 reference_wrapper<Ty>(arg)
。
範例
下列範例會定義兩個函式:一個繫結至字串變數,另一個繫結至呼叫 ref
所計算之字串變數的參考。 當變數的值變更時,第一個函式會繼續使用舊的值,第二個函式則使用新的值。
#include <algorithm>
#include <functional>
#include <iostream>
#include <iterator>
#include <ostream>
#include <string>
#include <vector>
using namespace std;
using namespace std;
using namespace std::placeholders;
bool shorter_than(const string& l, const string& r)
{
return l.size() < r.size();
}
int main()
{
vector<string> v_original;
v_original.push_back("tiger");
v_original.push_back("cat");
v_original.push_back("lion");
v_original.push_back("cougar");
copy(v_original.begin(), v_original.end(), ostream_iterator<string>(cout, " "));
cout << endl;
string s("meow");
function<bool (const string&)> f = bind(shorter_than, _1, s);
function<bool (const string&)> f_ref = bind(shorter_than, _1, ref(s));
vector<string> v;
// Remove elements that are shorter than s ("meow")
v = v_original;
v.erase(remove_if(v.begin(), v.end(), f), v.end());
copy(v.begin(), v.end(), ostream_iterator<string>(cout, " "));
cout << endl;
// Now change the value of s.
// f_ref, which is bound to ref(s), will use the
// new value, while f is still bound to the old value.
s = "kitty";
// Remove elements that are shorter than "meow" (f is bound to old value of s)
v = v_original;
v.erase(remove_if(v.begin(), v.end(), f), v.end());
copy(v.begin(), v.end(), ostream_iterator<string>(cout, " "));
cout << endl;
// Remove elements that are shorter than "kitty" (f_ref is bound to ref(s))
v = v_original;
v.erase(remove_if(v.begin(), v.end(), f_ref), v.end());
copy(v.begin(), v.end(), ostream_iterator<string>(cout, " "));
cout << endl;
}
tiger cat lion cougar
tiger lion cougar
tiger lion cougar
tiger cougar
swap
交換兩個 function
物件。
template <class FT>
void swap(function<FT>& f1, function<FT>& f2);
參數
FT
函式物件所控制的類型。
f1
第一個函式物件。
f2
第二個函式物件。
備註
函式會傳回 f1.swap(f2)
。
範例
// std__functional__swap.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::function<int (int)> fn0(neg);
std::cout << std::boolalpha << "empty == " << !fn0 << std::endl;
std::cout << "val == " << fn0(3) << std::endl;
std::function<int (int)> fn1;
std::cout << std::boolalpha << "empty == " << !fn1 << std::endl;
std::cout << std::endl;
swap(fn0, fn1);
std::cout << std::boolalpha << "empty == " << !fn0 << std::endl;
std::cout << std::boolalpha << "empty == " << !fn1 << std::endl;
std::cout << "val == " << fn1(3) << std::endl;
return (0);
}
empty == false
val == -3
empty == true
empty == true
empty == false
val == -3