我试图使用Arrays.copyOf,但我的代码库是Java 1.4。我将如何使用System.arraycopy?我有一些问题。
我需要为这一行寻找替代方案:
key = Arrays.copyOf(key,16);
答案 0 :(得分:1)
首先我想到的是arraycopy:
int[] copyTo = new int[16];
System.arraycopy(key, 0, copyTo, 0, key.length);
我不完全确定java 1.4有它。
修改强>
是的! Here it is!
答案 1 :(得分:0)
你有没有尝试过:
int[] copy = new int[key.length];
System.arraycopy(key, 0, copy, 0, key.length);