- 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
What does the method fill(int[], int val) do in java?
The fill(int[] a, int val) method of the java.util.Arrays class assigns the specified int value to each element of the specified array of integers.
Example
import java.util.Arrays; public class ArrayDemo { public static void main(String[] args) { int arr[] = new int[] {1, 6, 3, 2, 9}; System.out.println("Actual values: "); for (int value : arr) { System.out.println("Value = " + value); } Arrays.fill(arr, 18); System.out.println("New values after using fill() method: "); for (int value : arr) { System.out.println("Value = " + value); } } }
Output
Actual values: Value = 1 Value = 6 Value = 3 Value = 2 Value = 9 New values after using fill() method: Value = 18 Value = 18 Value = 18 Value = 18 Value = 18
Advertisements