Giriş
std::type_info nesnesi döner.
Örnek - String literal
Açıklaması şöyle.
std::type_info nesnesi döner.
Örnek - String literal
Açıklaması şöyle.
It is a common misconception that a string literal has type const char*.Şöyle yaparız.
It doesn't. It has type const char[<size + 1>] (plus one for the null terminator).
std::cout << typeid(const char*).name() << std::endl; // PKc
std::cout << std::any("").type().name() << std::endl; // PKc
std::cout << typeid("").name() << std::endl; // A1_c
Hiç yorum yok:
Yorum Gönder