std::bad_any_cast Exception
Açıklaması şöyle.
Bu exception'ı görmek için şöyle yaparız.
Açıklaması şöyle.
ÖrnekThrows std::bad_any_cast if the typeid of the requested ValueType does not match that of the contents of operand.
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