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.
我正在寻找这样的东西:
MyClass::metaObject()->className()
这不起作用,因为在执行此代码时,不存在 MyClass 的实例化。
如果这是可能的,有没有办法获得从 MyClass 派生的所有类的名称?
使用静态元对象:
MyClass::staticMetaObject.className()
作品!
您应该能够使用:
obj->metaObject()->className();