显式转换为std::函数

问题描述 投票:0回答:1

我正在尝试定义 显式转换 归类 std::function 像这样。

#include <functional>

class ExpInt { private:
    const int value;
public:
    ExpInt(const int v):value(v){}
    explicit operator std::function<int (void)> ()
    {
        return [=](void){ return value; };
    }
};

int main(int argc, char **argv)
{
    auto e = new ExpInt(44);
    auto f = static_cast<std::function<int (void)>>(e);
    return 0;
}

但是当我编译的时候,我得到了以下错误。

$ g++ main.cpp -o main
main.cpp: In function ‘int main(int, char**)’:
main.cpp:16:51: error: no matching function for call to ‘std::function<int()>::function(ExpInt*&)’
  auto f = static_cast<std::function<int (void)>>(e);
                                                   ^
c++ casting std-function explicit-conversion
1个回答
2
投票

编译器会告诉你哪里出了问题。

error: no matching function for call to ‘std::function<int()>::function(ExpInt*&)’
auto f = static_cast<std::function<int (void)>>(e);
                                               ^

一个指向 ExpInt 不能转换为 std::function<int (void)>. ExpInt 会是可转换的,所以如果你只是通过指针间接,那就可以了。

auto f = static_cast<std::function<int (void)>>(*e);

P. S. 你会泄露动态分配的信息. 避免使用自己的裸指针。

© www.soinside.com 2019 - 2024. All rights reserved.