我正在將數據添加到HashMap中,其中節點是具有變量索引和後繼的對象。HashMap對象數組數據被替換
private static HashMap <Integer, node> peerList = new HashMap<Integer, node>();
public void generateFingerTable (int node_position) {
chordSize = chord.initChordSize;
chord chord = new chord();
//create new node and add to map
node newPeer = new node();
peerList.put(node_position, newPeer);
for (int i=0; i<chordSize; i++) {
int temp = i+1;
newPeer.index = new int [chordSize];
newPeer.successor = new int [chordSize];
int temp1 = node_position + (int)Math.pow(2, temp-1) % chord.getChordSize();
peerList.get(node_position).index[i] = temp;
peerList.get(node_position).successor[i] = temp1;
System.out.println ("Index: " + newPeer.index[i] + "\n" + "Successor: " +
newPeer.successor[i]);
}
}
public void printFingerTable() {
for (Map.Entry<Integer, node> m : peerList.entrySet()) {
System.out.println ("Peer " + m.getKey() + " with Index: " + m.getValue().getIndex() + " Successor: " +
m.getValue().getSuccessor());
}
當我打印哈希細節,結果表明索引:[0,0,0,0,5],後續:0,0,0,0,16],這意味着先前的添加元素被替換,只有最後一個元素保存在Hashmap中。
預期結果應該是索引[1,2,3,4,5],後繼者:[1,2,4,8,16]。 我該如何修改這個數據才能被替換?
你好'HashMap'不會允許重複只要找到重複鍵它將取代與最新的一個。 – Babel