List copy

In this chapter you will learn:

  1. How to copy value from one list to another list
  2. Copy Elements of ArrayList to Vector

Copy value to a List

static<T> void copy(List<? super T> dest, List<? extends T> src) Copies all of the elements from one list into another.

import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/*  ja v a  2  s  .  com*/
public class Main {
  public static void main(String args[]) throws Exception {
    List list1 = Arrays.asList(new String[] { "U", "C" });
    List list2 = Arrays.asList(new String[] { "1", "2", "3" });

    System.out.println(list1);
    System.out.println(list2);

    Collections.copy(list2, list1);
    System.out.println(list1);
    System.out.println(list2);
  }
}

The output:

Copy Elements of ArrayList to Vector

The same copy methods can be used to copy from a list to a vector.

import java.util.ArrayList;
import java.util.Collections;
import java.util.Vector;
/*from ja v  a2 s.co m*/
public class Main {
  public static void main(String[] args) {

    ArrayList arrayList = new ArrayList();

    arrayList.add("1");
    arrayList.add("2");
    arrayList.add("3");
    arrayList.add("java2s.com");

    Vector v = new Vector();
    v.add("A");
    v.add("B");
    v.add("C");
    v.add("D");
    
    System.out.println("Before copy, Vector Contains : " + v);
    Collections.copy(v, arrayList);
    System.out.println("After Copy, Vector Contains : " + v);
  }
}

Next chapter...

What you will learn in the next chapter:

  1. How to do binary search on a List
  2. How to use the not-in index value returned from binary search to insert value
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