std::bind1st, std::bind2nd
来自cppreference.com
< cpp | utility | functional
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| template< class F, class T > std::binder1st<F> bind1st( const F& f, const T& x ); |
(1) | (过时了) |
| template< class F, class T > std::binder2nd<F> bind2nd( const F& f, const T& x ); |
(2) | (过时了) |
给定的参数
1) x绑定到第一个或第二个参数给定的二元函数对象f。也就是说,存储x内所得到的包装器,其中,如果调用,通过作为第一或第二个参数的xf.Original:
Binds a given argument
x to a first or second parameter of the given binary function object f. That is, stores x within the resulting wrapper, which, if called, passes x as the first or the second parameter of f.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
绑定的第一个参数
2) fx。有效地调用std::binder1st<F>(f, typename F::first_argument_type(x)).Original:
Binds the first argument of
f to x. Effectively calls std::binder1st<F>(f, typename F::first_argument_type(x)).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
绑定的第二个参数
fx。有效地调用std::binder2nd<F>(f, typename F::second_argument_type(x)).Original:
Binds the second argument of
f to x. Effectively calls std::binder2nd<F>(f, typename F::second_argument_type(x)).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目录 |
[编辑] 参数
| f | - | 指针到函数绑定参数
Original: pointer to a function to bind an argument to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| x | - | 参数绑定到
fOriginal: argument to bind to fThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[编辑] 返回值
一个函数对象包装
f和x.Original:
A function object wrapping
f and x.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 例外
(无)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 另请参阅
| (过时了) (过时了) |
函数对象的一个二元函数和它的参数之一 Original: function object holding a binary function and one of its arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (类模板) |