2017年6月15日
摘要: 1.数组赋值练习: int[] a ={1,2,3,4}; int[] b; b=a; b[2]=1025; System.out.print("数组一"); for (int i = 0; i <b.length; i++) { System.out.print(b[i]); } System.o 阅读全文
posted @ 2017-06-15 20:18 丿随缘 阅读(94) 评论(0) 推荐(0) 编辑