Malleshwari
Collections arraylist
1 Answer(s)      3 years ago
Posted in : Java Interview Questions

how we can make array list as syncronised....and what will be the code for that?
View Answers

May 7, 2010 at 3:21 PM


Hi Friend,

Try the following code:

import java.util.*;
class SynchronizedArrayList{
public static void main(String[] args)
{
ArrayList al=new ArrayList();
al.add("1");
al.add("2");
al.add("3");
List list = Collections.synchronizedList(al);

synchronized(list) {
Iterator i = list.iterator();
while (i.hasNext()){
System.out.println(i.next());
}
}
}
}

Thanks









Related Pages:
collections
collections  in collections can we perform binarysearch on arraylist elements without sorting them
collections
collections  1.Create an ArrayList of Object Planet with instance variable name and colour. Add 5 planets to the ArrayList planetList. Sort the ArrayList in ascending order of name and descending order of colour using comparator
collections
*/ public static void main(String as[]) { ArrayList al= new ArrayList... code, an object of ArrayList is created. The method add() then adds an integer
creating own ArrayList without Collections?
creating own ArrayList without Collections?  How can we write our own arraylist without using collections in JAVA
Collections arraylist - Java Interview Questions
Collections arraylist  how we can make array list as syncronised....and what will be the code for that?  Hi Friend, Try the following... main(String[] args) { ArrayList al=new ArrayList(); al.add("1"); al.add("2
ArrayList
Java Notes: ArrayList java.util.ArrayList allows for expandable arrays, and is the Collections replacement for the older Vector class. An ArrayList has the following advantages over an array: An ArrayList automatically expands
Collections Overview
Java NotesCollections Overview Summary of Collections interfaces Most... that the classes implement. Collections - This is a basic set of methods for working... inheritance. The most useful classes are in bold. Collections // Contains may
ArrayList
Java Notes: ArrayList java.util.ArrayList allows for expandable arrays, and is the Collections replacement for the older Vector class. An ArrayList has the following advantages over an array: An ArrayList automatically expands
collections - Java Interview Questions
in Array of type Integer. Collections : ArrayList al = new ArrayList...)); This show n element store in ArrayList not specify.It can be resizable. Thanks
Collections in Java
Collections in Java are data-structures primarily defined through a set of classes and interface and used by Java professionals. Some collections in Java that are defined in Java collection framework are: Vectors, ArrayList, HashMap
Collections - Java Beginners
in collections... can anyone explain in short..? If possible can you give some sites... class CollectionLoop{ private static List squares = new ArrayList..., http://www.roseindia.net/java/jdk6/introduction-collections-api.shtml
COLLECTIONS - Java Interview Questions
COLLECTIONS  i have elements in Arraylist i want convert...;(); ArrayList arraylist = new ArrayList(); arraylist.add("A"); arraylist.add..."); arraylist.add("F"); hashmap.put("key", arraylist); Iterator iterator
Collections
Collections  Hi, Please send a study material on collections.../java/jdk6/introduction-collections-api.shtml http://www.roseindia.net/javacodeexamples/index.shtml http://www.devmanuals.com/tutorials/java/collections/index.html
java collections - Java Beginners
java collections  i need a sample quiz program by using collections and its property reply soon as possible ....   Hi Friend, Try...); int count = 0; int i = 0; ArrayList list = new ArrayList(); list.add
collections
collections  why we need collections.when we will use collections in our applications
How to Use Collections
How to Use Collections  how to use ArrayList and HashMaps in case of user defined class  Hi Friend, Please visit the following links: http://www.roseindia.net/java/jdk6/ http://www.roseindia.net/javacodeexamples
Conversion In Collections - Java Interview Questions
ArrayList to HashMap and HashMap to ArrayList. Thanks Prakash  Hi Friend, 1)Convert ArrayList To HashMap: import java.io.*; import java.util.... static void main(String[] args) throws Exception { List list = new ArrayList
ArrayList<E>
for expandable arrays, and is basically the same as the older the Collections Vector class. An ArrayList has these characteristics: An ArrayList automatically expands as data is added. Access to any element of an ArrayList is O(1). Insertions
Working with java Collections class
Working with java Collections class   ... with Collections class of java.util package. Actually java collections framework... of Collections class. For example- add element, copy elements, reverse data
arraylist
arraylist   Using arraylist class , what type of exception are throws, how can write a java programe   An ArrayList can throw... ArraylistException { void buildAlphabet() { ArrayList list = new ArrayList
ArrayList (non-generic)
); Check out Collections for other useful utility methods. Common ArrayList... Java Notes: ArrayList (non-generic) java.util.ArrayList allows for expandable arrays, and is the Collections replacement for the older Vector class
arraylist
arraylist  Hi How can we eliminet duplicate element from arraylist? How can we find highest salary from arraylist ? How can we highest key value pair from map? Thanks Kalins Naik   Remove duplicates from Arraylist
arraylist
arraylist  Hi how can we eliminet duplicate element from arraylist in java? how can we achieve data abstrcation and encapulation in java? how many type of modifier are there in java? Thanks kalins anik   Remove
Java Collections - Design concepts & design patterns
after the unwanted numbers are sorted. ArrayList fileAnumbers = new ArrayList... the fileB and removes it from the fileAnumbers ArrayList try { numberB
arraylist
arraylist  Hi i have class A , i have added employee name and id in arraylist, then how can i find out all infomation of class A using emplyee... data into an arraylist and display the data of the particular employee according
arraylist
% *(noOfYearService/2). Store each employee information in different arrayList depending on his
How to create new arraylist using Java
/collections/arraylist/newarraylist.html Thanks...How to create new arraylist using Java  hi, I want to develop an small application where i trying to create new arraylist inside the arraylist. Can
what is collections?
what is collections?  what is collections
Collections Framework
Collections Framework       Java provides the Collections Framework. In the Collection Framework... is the unified architecture that represent and manipulate collections. The collection
Collections API
Collections API  hello, What is the Collections API?   hi The Collections API is a set of classes and interfaces that support operations on collections of objects
Java arraylist sort
ArrayList doesn't have sort() method. We can use the static sort  method of the Collections class It sorts the given Collection object. Example of Java Arraylist Sort import java.util.ArrayList; import

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.