2013年5月26日

数组的基本定义方法

摘要: 一维数组:public class SingleDimensionArray { public static void main(String[] args) { //数组的静态初始化 int [] arr0 = {12,23,34}; //数组格式一: int[] arr1 = null; arr1 = new int[3]; //数组格式二: int[] arr2 = new int[3]; //假如取出的内容超过下表,程序会提示:ArrayIndexOutOfBoundsException /*声明一个数组,放在栈内存中,尚未指向具体的空间, ... 阅读全文

posted @ 2013-05-26 10:25 云端飘 阅读(855) 评论(0) 推荐(0) 编辑

导航