zoukankan      html  css  js  c++  java
  • Java 数组声明的几种方式

    Java数组定义声明的几种方法:

    1. 类型名称[] 变量名=new 类型名称[length];

    2.类型名称[] 变量名={?,?,?};

    3.类型名称[] 变量名=new 类型名称[]{?,?,?};

    代码样例:

    public class Example1 {
    
        public static void main(String []args){
            //数组定义的几种方法
    //        1. 类型名称[] 变量名=new 类型名称[length];
            int []a=new int[4];
            a[0]=1;
            a[1]=2;
            a[2]=3;
            a[3]=4;
            System.out.println(a);
            System.out.println(a[0]);
            System.out.println(a[1]);
            System.out.println(a[2]);
            System.out.println(a[3]);
            
    //        2.类型名称[] 变量名={?,?,?};
            int[] b={1,2,3,4};
            System.out.println(b[0]);
            System.out.println(b[1]);
            System.out.println(b[2]);
            System.out.println(b[3]);
            
    //        3.类型名称[] 变量名=new 类型名称[]{?,?,?};
            int[]c=new int[]{1,2,3,6};
            System.out.println(c[0]);
            System.out.println(c[1]);
            System.out.println(c[2]);
            System.out.println(c[3]);
        }
    
    }
    三种方法总览

    分开展示:

    1. 类型名称[] 变量名=new 类型名称[length];

    //    1. 类型名称[] 变量名=new 类型名称[length];
    int []a=new int[4];
    a[0]=1;
    a[1]=2;
    a[2]=3;
    a[3]=4;
    System.out.println(a);
    System.out.println(a[0]);
    System.out.println(a[1]);
    System.out.println(a[2]);
    System.out.println(a[3]);
    方法一:

    2.类型名称[] 变量名={?,?,?};

    //    2.类型名称[] 变量名={?,?,?};
    int[] b={1,2,3,4};
    System.out.println(b[0]);
    System.out.println(b[1]);
    System.out.println(b[2]);
    System.out.println(b[3]);
    方法二:

    3.类型名称[] 变量名=new 类型名称[]{?,?,?};

    //    3.类型名称[] 变量名=new 类型名称[]{?,?,?};
    int[]c=new int[]{1,2,3,6};
    System.out.println(c[0]);
    System.out.println(c[1]);
    System.out.println(c[2]);
    System.out.println(c[3]);
    方法三:
  • 相关阅读:
    comm---两个文件之间的比较
    fgrep---指定的输入文件中的匹配模式的行
    zip---解压缩文件
    unzip---解压缩“.zip”压缩包。
    tar---打包,解压缩linux的文件和目录
    scp---远程拷贝文件
    make---GNU编译工具
    gcc---C/C++ 编译器
    expr---计算工具
    curl -w 支持的参数
  • 原文地址:https://www.cnblogs.com/aihuadung/p/8525267.html
Copyright © 2011-2022 走看看