My java--Array (2)--multidimensional array

Source: Internet
Author: User

There are several ways to allocate memory space for a high-dimensional array

(1) Allocate space directly for each dimension array

int a[][]=new int [2][3];

(2) Allocate space for each dimension starting from the highest dimension

int a[][]=new int[2][];

a[0]=new int [3];

a[1]=new int [3];

Array of non-regular matrices

Multidimensional arrays in Java are actually both array elements and arrays so the number of elements in each array can be different so that an array of irregular matrices is called a jagged array.

Int[][]a=new int[4][];

a[0]=new int [2];

A[1]=new Int[3];

a[2]=new int [1];

a[3]=new int [9];

Note: It is illegal to write this: int t1[][]=new int [][4];

My java--Array (2)--multidimensional array

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.