123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Technology,-Gadget-and-Science >> View Article

Array In Java

Profile Picture
By Author: jatin
Total Articles: 102
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

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

Total Views: 90Word Count: 484See All articles From Author

Add Comment

Technology, Gadget and Science Articles

1. Guide To Understanding Led Road Flares And Led Safety Flares
Author: Andyxiong

2. Scraping Uae Grocery Chain Data
Author: Actowiz Solutions

3. What Are Document Management Services And How Do They Work?
Author: DocSmart Solutions

4. Web Scraping G2g For Real-time Price Changes & Trends
Author: Web Data Crawler

5. Rfid System Explained: Working, Benefits, And Real-world Business Applications
Author: AIDC Technologies

6. How Probe Monitoring And Storage Monitoring Are Transforming Environmental Compliance For Modern Facilities
Author: Chris Miller

7. Compliance-ready Erp With Dynamics 365 Business Central
Author: Ahil Waseem

8. Grocery Inflation Alert Dashboard – Oos & Price Spike Monitoring
Author: Food Data Scraper

9. Scrape Grocery Data Using Apis For Real-time Insights
Author: REAL DATA API

10. Multi-platform Tour Price Benchmarking For Smarter Pricing
Author: iwebdatascraping

11. Carrefour Food Delivery Data Scraping For Market Intelligence
Author: Retail Scrape

12. Best Buy Store-level Pricing Data Scraping From Us
Author: Web Data Crawler

13. Ultrapure Water Market 2025-2035: Trends, Technologies, And Industry Applications
Author: Shreya

14. Amazon Fresh Uk Grocery Deals & Offers Data Scraping Api
Author: Fooddatascrape

15. Europe Pelletized Fertilizer Market 2025–2035: Trends, Growth Drivers, And Future Outlook
Author: Shreya

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: