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.
是否可以将一个类保存到一个变量中,然后将一个对象转换为该类?我用谷歌搜索了一下,但似乎不可能通过例如指针将类保存到变量中。
我想要做的是,我有一堆实体存储在一个std::unordered_set. 我想将这些变量向上转换为它们的真实身份,例如 Entity 到 EntityControlUnit。
std::unordered_set
为此,我想将对象的真实类作为常量存储在 Entity 类中。然后使用该对象的函数或方法将其向上转换到该类。