Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the correct way to write the Java array?

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

这篇"Java数组正确的写法是什么"文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇"Java数组正确的写法是什么"文章吧。

索引:命名规则、自动类型推断、静态动态初始化、多维数组的其他写法、常见错误写法、数组下标越界、默认值问题、数组长度问题、数组内存解析

正确写法:

1.步骤分类:(以下int可以替换为char String double等等)

①一步写法:

int [] ids = new int []{1001,1002,1003};// 声明+初始化int ids [] = new int []{1001,1002,1003}; // [ ]位置有两种放法int ids [] = {1001,1002,1003};//自动类型推断,new int []可省/**********错误示范***错误示范***错误示范***错误示范************/int ids [] = new [] int{1001,1002,1003};//只有定义时的[]可以乱动

自动类型推断:仅在一步写法中适用,可以省略=右边的new int [ ]

②两步写法:

int ids [] ; //声明ids = new int [ ] {1001,1002,1003} ; //初始化/**********错误示范***错误示范***错误示范***错误示范************/int ids [];ids [] = new int {1001,1002,1003};//分两步时,左边不加[]int ids [];ids = {1001,1002,1003};//分两步时,没有类型推断

2.状态分类:静态动态必须二选一,给长度不加{},给{}不加长度

①静态初始化:

两个[ ]均为空String [] name = new String [] {"张三","李四"} ;//也可写为String [] name = {"张三","李四"};

②动态初始化:

后面的[ ]必须带数字规定长度,并且不能{}赋值String [ ] name ;name = new String [2] ;//可以合为一步写String name [] = new String [2];/**********错误示范****错误示范****错误示范********/int ids [3][4] = XXXXXXXXX;int ids [3][ ] = XXXXXXXXX;int ids [ ][4] = XXXXXXXXX;多维数组int arr1 [][] =XXXXXXXXXXX;int [] arr2 []=XXXXXXXXXXX;int [][] arr3 =XXXXXXXXXXX;//都是正确写法Java主张 int [] arr = new int []{}; 写法//多维数组同理int [] arr[][] =XXXXXXXX;int [][] arr[] =XXXXXXXX;随便瞎基8放都是正确的Java主张 int [][] arr = new int [][]{};写法不过我个人不习惯。。。int arr0 [][] = {{1,2},{3,4},{5,6}};//正确:静态、自动类型推断int arr1 [][] = new int [3][2];int arr2 [][] = new int [3][ ];//正确:动态、可省列数[]int arr3 [][][] = new int [3][ ][ ];//正确:动态、可省后两个[]

默认值问题:动态[i][j]有默认值,静态{}没有默认值(末尾详解)

int arr0 [][] = new int [2][2];//动态初始化,分配内存//数组内的4个成员全部默认为0,编译运行都不会报错int arr0 [][] = new int [][]{ {1,2},{3} };//静态初始化,编译能通过,arr0[1][1]没有默认值(未分配空间)//编译能通过,运行到arr[1][1]会报错int arr0[][] = new int [3][] ;// 输出arr0[3][0] arr0[3][1] arr0[3][2] arr0[3][3].......//都会报错

报错案例:

数组下标越界:arr[1][1]在静态初始化的时候没有给值,所以没有分配内存空间,编译能通过,但是访问的时候会报错。该静态初始化的数组范围仅限于arr[0][0] arr[0][1] 到arr[1][0]

深入内存理解:(末尾详解)

String cod [][] = new String [3][ ];//只定义了行,列数未知

System.out.println(cod[1][1]);//未定义列,不给默认值。运行报错

正确写法:加一步 cod[1]=new String [2\3\4....];分配列内存,给定默认值null

常见错误写法

① int [ ] arr1 = new int [ ] ; //静态忘带{}

② int [3] arr2 = new int [3] ; //前面[ ]必须空

③ int [ ] arr3 = new int [5] {1,2,3,4,5} ; //动态不能带{ }

数组一旦确定(声明+初始化),长度就固定了,不能更改

数组的内存分配是连续的,系统要为数组分配一个固定的空间,如果100个空间以后被其他内容占用内存,那么数组就只能用到前99个空间,如果长度可以改变,那么arr[100]就会更改其他内容产生bug

一个例子说明数组长度问题:

二维数组遍历,两层for循环:

public class Test2 { public static void main(String args[]) { int arr[][] = { {1,2,3},{4,5,6,7},{8,9},{10}}; for(int i = 0 ; i

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report