关于数组的基础知识

发布时间:2024年01月02日

一.关于数组的静态初始化的写法和特点

? ? ? ?数据类型[] 数组名={...};

? ? ? int ages={10,18,22,34,25};

? ? ? double score={99.5,90.0,88.3};

? ? ? 完整格式

? ? ?数据类型[] 数组名=new 数据类型[]{.....};

? ? ?int[] ages=new int{12,14,18,24,26};

二.定义数组我们说了哪几点注意事项?

? ? ?什么类型的数组存放什么类型的数据

? ? ?数据类型[] 数组名 也可以写成 数据类型 数组名[]

三.数组是属于什么类型,数组变量名中存储的是什么?

? ? ?数组是引用数据类型。存储的数组在内存中的地址信息。

四.关于数组常见的操作

? ? ? 如何访问数组的元素?

? ? ? ? ? ? ?数组名称[索引];

? ? ? ?如何访问数组的长度?

? ? ? ? ? ? ?数组名称.length;

? ? ? ? 数组的最大索引?

? ? ? ? ? ? 数组名.length-1;

? ? ? ? 如果访问数组时索引超过数组索引最大值会出现什么问题?

? ? ? ? ? ? 执行时会出现索引越界异常提示;

五.如何遍历数组

int[] a={1,2,3,4};
for(int i=0;i<a.length;i++){
     System.out.println(a[i]);
}

六.数组的动态初始化格式

? ? ? ? 数据类型[] 数组名称= new 数据类型[数组长度];

? ? ? ? int[] arr= new int[3];

? ? ? ? 注意:动态初始化和静态初始化是独立的不可混用。

? ? ?1.动态初始化数组后元素的默认值是什么样的?

? ? ? ? ? ?byte、short、int、char、long类型数组的元素默认值都是0;

? ? ? ? ? ?float、double类型数组默认初始值都是0.0;

? ? ? ? ? boolean类型数组默认初始值是false,String类型数组默认初始值是null;

七.数组特殊情况

? ? ? ? ?多个数组变量指向同一个数组对象的原因是什么?需要注意什么?

? ? ? ? ? ? ? 多个数组变量存储的是同一个数组对象的地址;

? ? ? ? ? ? ? 多个数组变量修改的是同一个数组对象的数据;

? ? ? ? ?如果某个数组中存储null,代表什么,需要注意什么?

? ? ? ? ? ? ? 代表这个数组变量没有指向数组对象;

? ? ? ? ? ? ? 可以输出这个数组变量,但是不可以用这个数组变量去访问数组内容和数组长度,否则会出现bug;

八.java的内存分配

? ? ? ? 方法区:放class文件的;

? ? ? ? 栈内存:运行的方法,main方法,定义的变量;

? ? ? ? 堆内存:? new出来的新对象都在堆内存中;

案例练习:

? ? ? ?1.分别输入六个裁判的判决分数,并求出平均值;

 public static void demo8(){
        double[] b=new double[6];
        double num=0;
        System.out.println("请分别输入六位评委的评分:");
        Scanner sc=new Scanner(System.in);
        for(int i=0;i<b.length;i++){
            b[i]=sc.nextDouble();
            num+=b[i];
        }
        System.out.println("平均分:"+num/6);
    }

2.求数组最大值

public  static void demo9(){
        int[] a={15,9000,10000,20000,-5};
        int max=a[0];
        for(int i=1;i<a.length;i++){
            if(max<a[i]) max=a[i];
        }
        System.out.println(max);
    }

3.数组的转置;

public static void demo10(){
        int[] a={1,2,3,4,5,6,7,8,9};
        int temp;
        for(int i=0,j=a.length-1;i<j ;i++,j--){
            temp=a[j];
            a[j]=a[i];
            a[i]=temp;
        }
        for(int j1=0;j1<a.length;j1++){
            System.out.print(a[j1]);
        }
    }

4.依次输入五个工号,随机排出工作汇报顺序;

private static void demo11(){
        Random r=new Random();
        int[] a=new int[5];
        Scanner sc=new Scanner(System.in);
        System.out.println("请依次输入五个员工的工号:");
        for(int i=0;i<a.length;i++){
            a[i]=sc.nextInt();
        }
        int index,temp=0;
        for(int j=0;j<a.length;j++){
            index=r.nextInt(5);
            temp=a[index];
            a[index]=a[j];
            a[j]=temp;
        }
    for(int m=0;m<a.length;m++){
        System.out.println(a[m]);
}
    }

文章来源:https://blog.csdn.net/2301_76512154/article/details/135324212
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。