摘要: 1. 使用 for-loop 复制数组元素 1 int[] num1 = {1, 2, 3, 4, 5}; 2 int[] num2 = new int[num1.length]; 3 for (int i = 0; i < num1.length; i++) { 4 num2[i] = num1[ 阅读全文
posted @ 2020-03-03 12:07 SheepCore 阅读(329) 评论(0) 推荐(0) 编辑