提交 b821d2ac authored 作者: Thomas Mueller's avatar Thomas Mueller

Use array.clone(), which should be faster than System.arraycopy

上级 5d096b58
......@@ -56,7 +56,7 @@ public final class ImmutableArray<K> implements Iterable<K> {
* @return the new immutable array
*/
public ImmutableArray<K> set(int index, K obj) {
K[] array = Arrays.copyOf(this.array, this.array.length);
K[] array = this.array.clone();
array[index] = obj;
return new ImmutableArray<K>(array);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论