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++/CX 中检查对象的类型?
我有一个从 ICustomObject 派生的对象向量,当我从向量中枚举对象时,我想知道实际的对象类型是什么。这样我就知道我应该可以访问该对象的哪些属性。
您可以使用 dynamic_cast - 如果对象是 MyObjectType 的对象,则结果将为非 null,如果是另一种类型,则结果将为 nullptr。
我发现这很好用!
Type^ meh = element->GetType();