InfoHeap
Tech
Navigation
  • Home
  • Tutorials
    • CSS tutorials & examples
    • CSS properties
    • Javascript cookbook
    • Linux/Unix Command Line
    • Mac
    • PHP
      • PHP functions online
      • PHP regex
    • WordPress
  • Online Tools
    • Text utilities
    • Online Lint Tools
search

Java tutorials & examples

    Java Basics

    • Hello World
    • print and println
    • System.out.format
    • static and instance variables

    Java classes and objects

    • this keyword

    Java Strings

    • Initialize string array
    • String prefix match
    • compare string
    • string to int

    Java Arrays

    • Array basics
    • 2d array example
    • array for-each loop
    • fill an array

    Java cookbooks

    • method equals vs operator ==
    • print exception as string
    • Arrays.sort custom Comparator
    • create inline Comparator
     
    • Home
    • > Tutorials
    • > Java

    Java – fill an array using java.util.Arrays

    on Jun 25, 2016

    Fill all values in an array

    import java.util.Arrays;
    
    public class Main {
      public static void main(String[] args) {
        int[] arr = new int[10];
        Arrays.fill(arr, 1);
        for (int v: arr) {
          System.out.println(v);
        }
      }
    }
    1
    1
    1
    1
    1
    1
    1
    1
    1
    1
    

    Fill range in an array

    import java.util.Arrays;
    
    public class Main2 {
      public static void main(String[] args) {
        int[] arr = new int[10];
        Arrays.fill(arr, 1);
        Arrays.fill(arr, 0, 5, 2); // fill first five values with 2
        for (int v: arr) {
          System.out.println(v);
        }
      }
    }
    2
    2
    2
    2
    2
    1
    1
    1
    1
    1
    

    Suggested posts:

    1. CSS animation-direction
    2. Java – equals vs ==
    3. Java – create inline Comparator example
    4. Mac – print java home on command line
    5. Linux – ssh agent forwarding when using bastion host
    6. Java – initialize string array
    7. Java – compare strings
    8. Mac – show volume icon on menu bar
    Share this article: share on facebook share on linkedin tweet this submit to reddit
    Posted in Tutorials | Tagged Java
    • Browse content
    • Article Topics
    • Article archives
    • Contact Us
    Popular Topics: Android Development | AngularJS | Apache | AWS and EC2 | Bash shell scripting | Chrome developer tools | Company results | CSS | CSS cookbook | CSS properties | CSS Pseudo Classes | CSS selectors | CSS3 | CSS3 flexbox | Devops | Git | HTML | HTML5 | Java | Javascript | Javascript cookbook | Javascript DOM | jQuery | Kubernetes | Linux | Linux/Unix Command Line | Mac | Mac Command Line | Mysql | Networking | Node.js | Online Tools | PHP | PHP cookbook | PHP Regex | Python | Python array | Python cookbook | SEO | Site Performance | SSH | Ubuntu Linux | Web Development | Webmaster | Wordpress | Wordpress customization | Wordpress How To | Wordpress Mysql Queries | InfoHeap Money

    Copyright © 2025 InfoHeap.

    Powered by WordPress