如题如题如题如题如题如题如题如题如题如题,a是一个数组
等价于s = s + aa[1];,即把数组aa中的第二个元素加上s,并赋给s
s = s + aa[1];
aa
s
意思就是s=s+aa[1]。aa[1]代表数组中的第二个元素。