- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Program to fill elements in a long array
Elements can be filled in a long array using the java.util.Arrays.fill() method. This method assigns the required long value to the long array in Java. The two parameters required are the array name and the value that is to be stored in the array elements.
A program that demonstrates this is given as follows -
Example
import java.util.Arrays; public class Demo { public static void main(String[] argv) throws Exception { long[] longArray = new long[5]; long longValue = 125; Arrays.fill(longArray, longValue); System.out.println("The long array content is: " + Arrays.toString(longArray)); } }
Output
The long array content is: [125, 125, 125, 125, 125
Now let us understand the above program
First the long array longArray[] is defined. Then the value 125 is filled in the long array using the Arrays.fill() method. Finally, the long array is printed using the Arrays.toString() method. A code snippet which demonstrates this is as follows:
long[] longArray = new long[5]; long longValue = 125; Arrays.fill(longArray, longValue); System.out.println("The long array content is: " + Arrays.toString(longArray));
- Related Articles
- Fill elements in a Java long array in a specified range
- Java Program to fill elements in a float array
- Java Program to fill elements in a short array
- Java Program to fill elements in a char array
- Java Program to fill elements in a byte array
- Java Program to fill elements in an int array
- Java program to Sort long Array
- Fill elements in a Java double array in a specified range
- Fill elements in a Java byte array in a specified range
- Fill elements in a Java float array in a specified range
- Fill elements in a Java char array in a specified range
- Fill elements in a Java int array in a specified range
- How to convert Long array list to long array in Java?
- Java Program to implement Binary Search on long array
- Java Program to fill an array with random numbers

Advertisements