摘要:
检测数组中基本数据类型的初始值、public class Test{ public static void main(String []args) { double []d = new double[1]; char []c = new char[1]; int []i = new int[1]; float []f = new float[1]; boolean []b = new boolean[1]; System.out.println(d[0]); System.out.println(c[0]); System.out.println(i[0]); System.out.print 阅读全文