gpt4 book ai didi

java - LinkedList addLast 函数替换列表中的其他值

转载 作者:行者123 更新时间:2023-12-02 08:43:51 24 4
gpt4 key购买 nike

我目前正在致力于实现一个用于发送数据包的队列。但是,我遇到了一个问题,当我在 LinkedList 上使用 addLast 函数时,它会将列表中的每个 Pair 替换为我添加到其中的 Pair。

队列:

private LinkedList<Pair<Integer, ByteBuffer>> queue;

Pair 已从 javafx.util.Pair 导入;

队列的初始化:

queue = new LinkedList<>();

方法:

    public synchronized void addToQueue(int bytes, ByteBuffer data) {
Pair<Integer, ByteBuffer> local = new Pair(bytes, data);
queue.addLast(new Pair(bytes, data));

if(bytes>2){
int i = 0;
for(Pair<Integer,ByteBuffer> datas:queue ){
System.out.println("\n Data in the "+i+ "th position in queue is: ");
printByteBufferAsBytes(datas.getValue(), datas.getKey());
i++;
}
}

}

为了调试,每当发送数据包时我都会打印data。此方法也可用于发送较小的数据包,但它似乎对于较小的数据包可以正常工作。

运行代码后,将打印以下结果:

Data in the 0th position in queue is: 
1 5 40 -128 -58 0 0 42 111 34 -24 0 0 0 0 112 114 105 110 116 66 121 116 101 66 117 102 102 101 114 65 115 something was added to queue

Data in the 0th position in queue is:
2 5 40 -128 -58 17 0 115 -86 119 76 66 121 116 101 115 40 113 117 101 117 101 46 112 101 101 107 40 41 46 103 101
Data in the 1th position in queue is:
2 5 40 -128 -58 17 0 115 -86 119 76 66 121 116 101 115 40 113 117 101 117 101 46 112 101 101 107 40 41 46 103 101 something was added to queue

Data in the 0th position in queue is:
2 5 40 -128 -58 38 0 -102 -46 -61 99 116 86 97 108 117 101 40 41 44 32 113 117 101 117 101 46 112 101 101 107 40
Data in the 1th position in queue is:
2 5 40 -128 -58 38 0 -102 -46 -61 99 116 86 97 108 117 101 40 41 44 32 113 117 101 117 101 46 112 101 101 107 40
Data in the 2th position in queue is:
2 5 40 -128 -58 38 0 -102 -46 -61 99 116 86 97 108 117 101 40 41 44 32 113 117 101 117 101 46 112 101 101 107 40 something was added to queue

Data in the 0th position in queue is:
3 5 40 -128 -58 59 0 109 60 120 12 11 41 46 103 101 116 75 101 121 40 41 41 101 117 101 46 112 101 101 107 40
Data in the 1th position in queue is:
3 5 40 -128 -58 59 0 109 60 120 12 11 41 46 103 101 116 75 101 121 40 41 41 101 117 101 46 112 101 101 107 40
Data in the 2th position in queue is:
3 5 40 -128 -58 59 0 109 60 120 12 11 41 46 103 101 116 75 101 121 40 41 41 101 117 101 46 112 101 101 107 40
Data in the 3th position in queue is:
3 5 40 -128 -58 59 0 109 60 120 12 11 41 46 103 101 116 75 101 121 40 41 41 101 117 101 46 112 101 101 107 40

似乎每次将某些内容添加到队列中时,队列中的所有其他值都会设置为相同的值。如果有人知道其中的原因,我将不胜感激。

方法 printByteBufferAsBytes:

    public void printByteBufferAsBytes(ByteBuffer bytes, int bytesLength) {
for (int i = 0; i < bytesLength; i++) {
System.out.print(Byte.toString(bytes.get(i)) + " ");
}
}

最佳答案

在方法 addToQueue 中,您需要将更新的 ByteBuffer 的内容复制到某个新的字节数组:

    public synchronized void addToQueue(int bytes, ByteBuffer data) {
byte[] copy = Arrays.copyOf(data.array(), bytes);

Pair<Integer, ByteBuffer> local = new Pair<>(bytes, ByteBuffer.wrap(copy));
queue.addLast(local);
// ... the rest of the method remains as is

}

关于java - LinkedList addLast 函数替换列表中的其他值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61212010/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com