template<typename T>
class Pack
{
private:
    std::function<T()> _Func = nullptr;
public:
    Pack()
    {
    }
    Pack(std::function<T()> func)
        : _Func(func)
    {
    }
    ~Pack()
    {
    }

    operator T()
    {
        return _Func();
    }
};


我使用的是operator T,我想隐式调用_Func,但我什至不能明确地执行它。似乎正确,但实际上错误C2440 @MSVC。我有两种使用方式:


类的静态成员(成功);
班级成员(失败)


(我不知道这是否重要)

我真的很想知道为什么它会以两种方式执行,更重要的是,我如何将其作为非静态成员放入我的班级并成功调用operator T

最佳答案

班级成员:

struct test
{
    test()
    {
        p_ = Pack<int>(std::bind(&test::foo, *this));
    }

    int foo()
    {
        std::cout << "test::foo" << std::endl;
        return 5;
    }

    Pack<int> p_;
};

int main()
{
    test t;
    int x = t.p_;

    return 0;
}


这在VS 2013 EE上运行良好。

关于c++ - C++用户定义的类型转换失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30273986/

10-13 05:02