码迷,mamicode.com
首页 > 编程语言 > 详细

不同变量数组默认初始值 学习笔记

时间:2015-01-09 01:47:18      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:package   public   

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 {
	
}


不同变量数组默认初始值 学习笔记

标签:package   public   

原文地址:http://9815936.blog.51cto.com/9805936/1600844

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!