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++ 中是否可以动态地(在运行时)获取类的所有成员的列表?
不,不是没有在编译时首先手动做一些工作。C++ 没有反射。Qt 使用它的moc系统来解决这个问题,它扫描你的源文件并为所有 Qt(和继承的)类生成元数据
moc