最佳答案
当在数组上使用时,Java 中的 clone ()方法究竟会返回什么? 它是否返回从原始数据复制的新数组?
例如:
int[] a = {1,2,3};
int[] b = a.clone();