首页 > 代码库 > 不同变量数组默认初始值 学习笔记
不同变量数组默认初始值 学习笔记
package com.ctgu.java; public class TestArray1 { public static void main(String[] args) { String[] strs = new String[4]; strs[0] = "AA"; strs[1] = "BB"; //strs[2] = "CC"; strs[3] = "DD"; for(int i = 0 ; i< strs.length;i++){ System.out.println(strs[i]); } // TODO Auto-generated method stub int[] scores = new int[4]; scores[0] = 89; scores[3] = 89; for(int i = 0 ; i< scores.length;i++){ System.out.println(scores[i]); } byte[] scores1 = new byte[4]; scores1[0] = 89; scores1[3] = 89; for(int i = 0 ; i< scores1.length;i++){ System.out.println(scores1[i]); } float[] f = new float[3]; for(int i = 0 ; i< f.length;i++){ System.out.println(f[i]); } System.out.println(); char[] c = new char [3]; for(int i = 0 ; i< c.length;i++){ System.out.println(c[i]); } boolean[] b = new boolean[3]; for(int i = 0 ; i< b.length;i++){ System.out.println(b[i]); } System.out.println(); Person[] pers = new Person[3]; for(int i = 0; i < pers.length;i++){ System.out.println(pers[i]); } } } class Person { }
不同变量数组默认初始值 学习笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。