int[] a = {1,2,3,4,5}; int[] b = {2,3,4,5,6}; b = a; System.out.println(b);
数组只能通过遍历数组来赋值吗?上例中的b=a;这样直接赋值,我测试过不行(a,b只是数组的管理者而不是所有者)。
String w = "hello"; String s = "nihao"; s = w; System.out.println(s);//输出了hello
同数组比较,这里的w,s不也是管理者嘛,为什么可以直接赋值?
Judson_Rao
慕无忌3156419
相关分类