Home Tutorial Java Certification Arrays in java

 
 

Arrays in java
Posted on: July 5, 2010 at 12:00 AM
In this SCJP Section,you will learn about Arrays in java.

Arrays in java

Arrays are the data structure of java , we use array where we need contiguous memory allocation. Array stores same type of data structure. Array type is checked at compile time. An array has a fixed length.

Declaration of Array

int[] array_name;     //declares an array of integers
String[] names;      
int[][] matrix;          //declare an array of integer

Initialization of Array

int[] a = new int[5];

It declares an array of length 5.

 For more details click here :

Java Array Tutorial

Related Tags for Arrays in java:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.