Ecco almeno un caso:
struct foo {
template<class T>
operator T() const {
std::cout << sizeof(T) << "\n";
return {};
}
};
se lo fai foo f; int x = f; double y = f;
, le informazioni sul tipo scorreranno "all'indietro" per capire cosa T
c'è dentro operator T
.
Puoi usarlo in un modo più avanzato:
template<class T>
struct tag_t {using type=T;};
template<class F>
struct deduce_return_t {
F f;
template<class T>
operator T()&&{ return std::forward<F>(f)(tag_t<T>{}); }
};
template<class F>
deduce_return_t(F&&)->deduce_return_t<F>;
template<class...Args>
auto construct_from( Args&&... args ) {
return deduce_return_t{ [&](auto ret){
using R=typename decltype(ret)::type;
return R{ std::forward<Args>(args)... };
}};
}
quindi ora posso farlo
std::vector<int> v = construct_from( 1, 2, 3 );
e funziona.
Certo, perché non farlo e basta {1,2,3}
? Beh, {1,2,3}
non è un'espressione.
std::vector<std::vector<int>> v;
v.emplace_back( construct_from(1,2,3) );
che, certamente, richiedono un po 'più di magia: esempio dal vivo . (Devo fare in modo che il deduce return esegua un controllo SFINAE di F, quindi rendi la F amichevole SFINAE, e devo bloccare std :: initializer_list nell'operatore deduce_return_t T.)