Learn array in Java with syntax, examples, types, and methods. A complete guide on Java array creation, declaration, and manipulation with best practices.
Introduction: Why Arrays Matter in Java
Arrays are the foundation of data storage and manipulation in Java. Whether you’re building a small desktop tool or a complex enterprise-level application, understanding how to use arrays effectively can make your code more efficient, readable, and powerful.
In this blog, we’ll take you from array definition in Java to real-world examples of array manipulation in Java, covering various types like multidimensional arrays, 2D arrays, and how they differ from other data structures like ArrayList. We’ll also explore how to declare arrays, loop through them, and use array methods in Java with real-time code examples.
What is an Array in Java?
An array in Java is a container object that holds a fixed number of elements of the same data type. Arrays are indexed structures, meaning each element can be accessed using an index starting from 0.
Array Definition in Java
// Syntax dataType[] arrayName;
This is the most common syntax for array declaration in Java. You can also write:
dataType arrayName[];
Both are valid, but the first is more commonly used in the Java community.
How to Declare Array in Java
Declaring an array means informing the compiler about the array’s data type.
int[] myArray; String[] nameList; double[] salary;
This only creates the reference, not the actual array in memory.
Java Create Array: Instantiating an Array
To create an array in Java, you need to use the new keyword along with the desired size.
int[] myArray = new int[5];
This statement creates an array of 5 integers.
You can also create and initialize an array at the same time:
int[] scores = {85, 90, 78, 92, 88};
Array in Java Syntax and Initialization
Here’s how you can declare and initialize arrays in one line:
String[] fruits = {“Apple”, “Banana”, “Cherry”};
Or in two steps:
String[] fruits; fruits = new String[]{“Apple”, “Banana”, “Cherry”};
Array Example in Java: Real-Time Scenarios
Let’s look at a simple java program using array that stores and displays student scores.
public class StudentScores { public static void main(String[] args) { int[] scores = {95, 87, 74, 89, 100}; for (int i = 0; i < scores.length; i++) { System.out.println(“Student “ + (i+1) + “: “ + scores[i]); } } }
Output:
yaml
Student 1: 95 Student 2: 87 Student 3: 74 Student 4: 89 Student 5: 100
Types of Arrays in Java
Java supports several types of arrays:
Single-Dimensional Arrays
Multidimensional Arrays
Jagged Arrays (Arrays of Arrays)
Java 2D Array Example
A 2D array in Java is an array of arrays. It’s often used to represent matrices or grids.
int[][] matrix = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} };
Java Program Using 2D Array
public class MatrixDemo { public static void main(String[] args) { int[][] matrix = { {10, 20}, {30, 40} }; for (int i = 0; i < matrix.length; i++) { for (int j = 0; j < matrix[i].length; j++) { System.out.print(matrix[i][j] + “ “); } System.out.println(); } } }
Please visit our website to know more:-https://cyberinfomines.com/blog-details/array-in-java