std::type_info::before
来自 cppreference.com
bool before( const type_info& rhs ) const; |
(自 C++11 起为 noexcept) | |
如果此 type_info
的类型在实现的排序顺序中先于 rhs 的类型,则返回 true。不保证任何内容;特别是,排序顺序在同一程序的调用之间可能会发生变化。
内容 |
[编辑] 参数
rhs | - | 另一个要比较的类型信息对象 |
[编辑] 返回值
如果此 type_info
的类型在实现的排序顺序中先于 rhs 的类型,则返回 true。
[编辑] 示例
运行此代码
可能的输出
char goes before int in this implementation.
[编辑] 另请参见
(C++20 中已删除) |
检查对象是否引用相同类型 (公共成员函数) |