c++ - 为什么调用bind时,不能直接加&,而必须用ref
PHP中文网
PHP中文网 2017-04-17 14:24:58
0
1
542

如题

#include <iostream>
#include <functional>
using namespace std;
void g(ostream &os)
{
    os << "1";
}
int main()
{
    //非法
    auto f = bind(g, &cout);
    f();
    //合法
    auto h = bind(g, ref(cout));
    h();
    return 0;
}
PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(1)
Peter_Zhu

因為函數原型就是這樣規定的,你寫成&cout就是個指針了,當然非法;用std::ref包裹一下就符合原型要求了,相當於傳個引用進去,同樣還有不可變的std::cref,以下是官方對於參數類型的要求:

fn
A function object, pointer to function or pointer to member.
Fn shall have a decay type which is move-constructible from fn.

args...
List of arguments to bind: either values, or placeholders.
The types in Args... shall have decay types which are move-constructible from their respective arguments in args....
If for any argument, its decay type is a reference_wrapper, it bounds to its referenced value instead.

你看最後一行,說要求得是個reference_wrapperstd::refstd::cref就是乾這個的

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!