填空题设有数组定义:int MyIntArray[]=10,20,30,40,50,60,70; 则执行下面几个语句后的输出结果是 【10】 。 int s=0; for(int i=0; i<My IntArray.length;i++) s+=MyIntArray[i]; System.out.println(s);
填空题Java运行时系统通过 【9】 周期性地释放无用对象所使用的内存,以完成对象的消除。