我在玩std::variant, lambdas
和std::future
,當我試圖將它們組合在一起時,得到了超級奇怪的結果。下面舉例說明:無法初始化各種lambda表達式的std :: variant
using variant_t = std::variant<
std::function<std::future<void>(int)>,
std::function<void(int)>
>;
auto f1 = [](int) { return std::async([] { return 1; }); };
auto f2 = [](int) { return std::async([] { }); };
variant_t v1(std::move(f1)); // !!! why DOES this one compile when it SHOULDN'T?
auto idx1 = v1.index(); //equals 1. WHY?
variant_t v2(std::move(f2)); // !!! why DOESN'T this one compile when it SHOULD?
以下是編譯錯誤:
Error C2665 'std::variant<std::function<std::future<void> (int)>,std::function<void (int)>>::variant': none of the 2 overloads could convert all the argument types
OK,從返回void
到int
讓改變variant
的物品簽名:
using variant_t = std::variant<
std::function<std::future<int>(int)>,
std::function<int(int)>
>;
variant_t v1(std::move(f1)); // COMPILES (like it should)
auto idx1 = v1.index(); // equals 0
variant_t v2(std::move(f2)); // DOESN'T compile (like it should)
這是什麼鬼去這裏?爲什麼std::future<void>
如此特別?
注意:'std :: variant'是一個C++ 17特性,而不是C++ 11。 – Rakete1111
你的編譯錯誤來自第二個例子,但你的問題看起來像是從你的第一個例子。 – Barry