typeid 运算符获取对象的静态类型信息,返回 type_info 对象,其中包含类型名、大小、对齐、基础类、修饰符等信息。可通过 name()、before()、base() 等方法访问对象信息。
C 中 typeid 的用法
typeid 运算符是一个 C 关键字,用于获取对象的静态类型信息。它返回一个 type_info 对象,该对象包含有关对象类型的各种信息。
用法:
typeid 运算符后面跟一个表达式,该表达式表示要获取其类型信息的表达式。表达式可以是:
语法:
<code class="cpp">typeid(expression) // 其中 expression 是要获取其类型信息的表达式</code>
返回值:
typeid 运算符返回一个 type_info 对象,其中包含有关对象类型的以下信息:
可以通过以下方法访问 type_info 对象中的信息:
示例:
<code class="cpp">int main() { int x; std::string s; std::cout << typeid(x).name() << std::endl; // 输出:int std::cout << typeid(s).name() << std::endl; // 输出:std::__cxx11::basic_string<char> return 0; }</code>
注意事项:
以上是c++中typeid的用法的详细内容。更多信息请关注PHP中文网其他相关文章!