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()
動作します!