使用std :: thread从派生类调用重写方法

时间:2014-08-29 13:00:16

标签: c++ c++11 polymorphism

我正试图让这样的事情发挥作用:

int main()
{
    class Base
    {
    public:
        Base() = default;
        virtual void print() = 0;
        void CallThread()
        {
            std::thread(&Base::print, *this);
        };
    };

    class derived1 : public Base
    {
    public:
        derived1() = default;
        void print() { printf("this is derived1\n"); }

    };
    class derived2 : public Base
    {
    public:
        derived2() = default;
        void print() { printf("this is derived2\n"); }

    };
    Base* ptr;
    ptr = new derived1();
    ptr->CallThread();

    return 0;
}

我想要的结果是:

  

这是派生的。

问题是它甚至不会编译。我正在使用VisualStudio 2013。

错误是:

  

错误2错误C3640:'main :: Base :: [thunk]:__ thishisall   main':: 2':: Base ::`vcall'{0,{flat}}'}'':引用或虚拟   必须定义本地类的成员函数

任何想法如何使这项工作?

编辑:为了清楚,我在线程中尝试做的更复杂,这只是我程序结构的一个例子(所以lambda对我来说不是一个好主意)

1 个答案:

答案 0 :(得分:10)

你的代码很好,除了两件事:

std::thread(&Base::print, *this);

应该是:

std::thread(&Base::print, this).join(); // join & no asterisk