声明数组的方式

    1. 指定长度:int[] arr = new int[3]
    2. 直接初始化:int[] arr = {1,2,3}