我正在尝试复制原始队列并打印出队列的内容,然后再次运行副本并打印队列中的元素总数。当我在原始队列上运行 CopyQueue 方法并将其用作 ShowQueue 方法的输入时,它会更改原始队列。
public static void main(String[] args) {
LinkedUnbndQueue test = new LinkedUnbndQueue();
test.enqueue('a');
test.enqueue('b');
System.out.println( showQueue(CopyQueue(test)) );
System.out.println( Count(CopyQueue(test)) );
}
public static LinkedUnbndQueue CopyQueue(LinkedUnbndQueue orig){
LinkedUnbndQueue copy = orig;
return copy;
}
public static int Count(LinkedUnbndQueue orig){
int count = 0;
while(!orig.isEmpty() ){
orig.dequeue();
count = count + 1;
}
return count;
}
public static String showQueue(LinkedUnbndQueue orig){
String str = "";
while(!orig.isEmpty()){
str = str + orig.dequeue() + " ";
}
return str;
}