Home Java Wrapper-class Insert an array list of objects with addAll(ArrayList) method



Insert an array list of objects with addAll(ArrayList) method
Posted on: February 28, 2008 at 12:00 AM
In this section you will learn to insert an array list of objects to another list. Here is an example that provides the usage of the addAll(Arrayist) method in more detail.

Insert an array list of objects with addAll(ArrayList) method

In this section you will learn to insert an array list of objects to another list.

Here is an example that provides the usage of the addAll(Arrayist) method in more detail.

 

Create a class "addAll" with an ArrayList . Populate it with the object using  the addAll(ArrayList) method.

 

Learn how to use the addAll method of the List interface. Example code discussed here will tell you how to do this.

Here is the Code of the Example :

 

 

 

 

AddAll.java:

import java.util.*;
public class addAll{
  public static void main(String argv[]){
  List v = new ArrayList();
  v.addAll(Arrays.asList(new Integer[]{1,2,3,4}));
  for(int i=0; i < v.size();i ++){
  Integer iw =(Integerv.get(i);
  System.out.println(iw);
  }
  }
}

Here is the Output of the Example :

C:\roseindia>javac VecAdd.java

C::\roseindia>java VecAdd
1
2
3
4

Related Tags for Insert an array list of objects with addAll(ArrayList) method:
cidearrayclasslistobjectinsertioobjectsmethodviarraylistdalusingthisidaiusagecreateexampleaddwithtolearntailexameareilitdessectionnotlipopulateulpopinnoasmsageddjadclesallagemeobjprodetaildetailxaxampsatlateishallmplrayeaarrtsausassthsthatctsjepleplprono


More Tutorials from this section

Ask Questions?    Discuss: Insert an array list of objects with addAll(ArrayList) method  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.