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.
我的问题是我有 2 个类,一个称为 Set,它包含一个值的哈希集,现在哈希集中的这些值已用作哈希映射中的键,该哈希映射位于一个名为 Map 的单独类中,我不知道从哪里开始但是它必须是小东西
一般来说,如果你想用 HashSet 中的键为你的 HashMap 播种,你可以这样做:
HashSet<KeyClass> set; HashMap<KeyClass,ValueClass> map = new HashMap<KeyClass,ValueClass>(); for (KeyClass key : set) { map.put( key, new ValueClass() ); }