23 Mart 2018 Cuma

std::any_cast

std::bad_any_cast Exception
Açıklaması şöyle.
Throws std::bad_any_cast if the typeid of the requested ValueType does not match that of the contents of operand.
Örnek
Bu exception'ı görmek için şöyle yaparız.
std::any a = 10;  // holds an int now
auto b = std::any_cast<long>(a);   // throws bad_any_cast exception


Hiç yorum yok:

Yorum Gönder