Gram z std::variant, lambdas
i std::future
i otrzymałem super dziwne wyniki, gdy próbowałem je skomponować. Oto przykłady:Nie można zainicjować std :: variant z różnymi wyrażeniami lambda
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?
tu jest błąd kompilacji:
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, pozwala zmieniać variant
„s przedmioty podpisów powrocie void
do int
:
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)
Co jest do cholery dzieje się tutaj? Dlaczego std::future<void>
jest tak wyjątkowy?
Uwaga: 'std :: variant' jest funkcją C++ 17, a nie C++ 11. – Rakete1111
Twój błąd kompilacji pochodzi z drugiego przykładu, ale twoje pytanie sprawia, że wydaje się, że pochodzi z twojego pierwszego. – Barry