tr1 :: function和tr1 :: bind

时间:2012-06-28 18:38:54

标签: c++ tr1

我将以下内容放入Ideone.com(和codepad.org):

#include <iostream>
#include <string>
#include <tr1/functional>

struct A {
    A(const std::string& n) : name_(n) {}
    void printit(const std::string& s) 
    {
        std::cout << name_ << " says " << s << std::endl;
    }
private:
    const std::string name_;
};

int main()
{
    A a("Joe");
    std::tr1::function<void(const std::string&)> f = std::tr1::bind(&A::printit, &a, _1);
    a("Hi");
}

并且遇到了这些错误:

  

prog.cpp:在函数'int main()'中:

     

prog.cpp:18:错误:'_1'未在此范围内声明

     

prog.cpp:19:错误:无法调用'(A)(const char [3])'

     

prog.cpp:18:警告:未使用的变量'f'

我不能为我的生活找出第18行的错误。

2 个答案:

答案 0 :(得分:7)

两个错误:

  1. _1在命名空间std::tr1::placeholders中定义。您需要在using namespace std::tr1::placeholders;main() ,或使用std::tr1::placeholders::_1

  2. 第19行应该是f("Hi"),而不是a("Hi")

  3. #include <iostream>
    #include <string>
    #include <tr1/functional>
    
    struct A {
        A(const std::string& n) : name_(n) {}
        void printit(const std::string& s) 
        {
            std::cout << name_ << " says " << s << std::endl;
        }
    private:
        const std::string name_;
    };
    
    int main()
    {
        using namespace std::tr1::placeholders;  // <-------
    
        A a("Joe");
        std::tr1::function<void(const std::string&)> f = std::tr1::bind(&A::printit, &a, _1);
        f("Hi");    // <---------
    }
    

答案 1 :(得分:5)

您得到prog.cpp:18: error: ‘_1’ was not declared in this scope,因为_1位于名称空间std::tr1::placeholders中,因此您需要使用std::tr1::placeholders::_1using namespace std::tr1::placeholders

prog.cpp:19: error: no match for call to ‘(A)(const char [3])’来自于您a("Hi")应该f("Hi")

时尝试致电

fixed code编译得很好。