List filling

In this chapter you will learn:

  1. Fill n Copy object to a list

Fill n Copy object to a list

static<T> List<T> nCopies(int n, T o) from Collections class Returns an immutable list consisting of n copies of the specified object.

Create List containing n Copies of Specified Object

import java.util.Collections;
import java.util.List;
/*ja  v  a 2  s. co m*/
public class Main {
  public static void main(String[] args) {
    List list = Collections.nCopies(5, "java2s.com");
    System.out.println("List contains, ");

    
    System.out.println(list);
  }
}

The output:

Next chapter...

What you will learn in the next chapter:

  1. How to reverse a Java list
Home » Java Tutorial » List

List

    List interface
    List add/insert elements
    List clear/remove elements
    List search
    List element get and set
    List and its Iterator
    List size, empty
    List conversion, to array
    List to sublist
    List comparison
    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search

ArrayList

    ArrayList
    ArrayList Creation
    ArrayList add/insert
    ArrayList get/set element
    ArrayList clear/remove
    ArrayList search
    ArrayList copy and shallow copy
    ArrayList size, trim to size and capacity
    ArrayList to array

LinkedList

    LinkedList class
    LinkedList creation
    LinkedList add/insert elements
    LinkedList get elements
    LinkedList search
    LinkeList replace/set elements
    LinkedList remove element
    LinkedList copy
    LinkedList iterator
    LinkedList peek element
    LinkedList pop/push element
    LinkedList conversion

List Utilities

    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search