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.
我在尝试创建一个不确定的散列映射时遇到了麻烦,因为我想要作为从抽象类继承的关键特定对象,所以 Key_Type 是父类范围的,但我不知道如何处理容器需要,因为 Hash_Type 是模块化类型。如何处理类范围键的哈希?
首先想到的是在 Key_Type 抽象类中添加一个“哈希”原始函数,使用该具体类型的组件在每个具体派生键类型中实现,然后使映射的哈希函数调用这个根据键的实际类型重新分配的原始哈希函数。