Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查 C++ 中的类类型? 在 Java 中,我使用了instanceof.
instanceof
我不喜欢使用动态转换,而只喜欢经典的 c++。 有什么办法吗?
澄清: 这不是StackOverflow 中另一个问题的重复,因为我问过如何在不使用 of 的情况下找到它dynamic_cast。在另一个问题中,答案是使用它。请不要将其标记为重复。
dynamic_cast
如果没有 RTTI 或它的自制替代品,就无法检查类类型。如果在没有 RTTI 的情况下编译的应用程序有关类型的信息未存储在任何地方。