array

作者: holmeszhang | 来源:发表于2016-06-27 20:51 被阅读0次
    package cn.bjsxt.array;
    
    /**
     * 数组的基本概念
     * @author dell
     *
     */
    public class Test01 {
        public static void main(String[] args) {
            /**
             * 1. 数组是相同数据类型(数据类型可以为任意类型)的有序集合
             * 2. 数组也是对象。数组元素相当于对象的成员变量(详情请见内存图)
             * 3. 数组长度的确定的,不可变的。如果越界,则报:ArrayIndexOutofBoundsException
             */
            int[] a = new int[3];
            a[0] = 23;
            a[1] = 28;
            a[2] = 32;
    
            Car[] cars = new Car[4];
            cars[0] = new Car("奔驰");
            System.out.println(a.length); 
            for(int i=0;i<a.length;i++){
                System.out.println(a[i]);
            }
            
        }
    }
    
    

    相关文章

      网友评论

          本文标题:array

          本文链接:https://www.haomeiwen.com/subject/keazdttx.html