I have a Arraylist object, it has duplecate values also. Now
question is i want delete duplecate data in that objet with
out using Set?
Answer Posted / athira
package com.modon;
import java.util.ArrayList;
public class MyArrayList {
public static void main(String[] args) {
ArrayList<Object> dupList=new ArrayList<Object>();
ArrayList<Object> resultList=new ArrayList<Object>();
dupList.add(1);
dupList.add(2);
dupList.add(3);
dupList.add("D");
dupList.add("A");
dupList.add("F");
dupList.add("A");
dupList.add("A");
dupList.add(1.5);
dupList.add(1.50);
dupList.add(new String("A"));
dupList.add(new Integer(3));
for(Object s:dupList){
if(!resultList.contains(s))
resultList.add(s);
}
System.out.println("dupList: "+dupList.size());
System.out.println("resultList: "+resultList.size());
}
}
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is double data type?
What is the purpose of using java.lang.class class?
What is the use of 'super' keyword inside a constructor?
What is arrays aslist in java?
Where to store local variables?
What is stream api in java8?
What is meant by vector class, dictionary class, hash table class, and property class?
Explain about static nested classes in java?
What are the legal operands of the instanceof operator?
Can extern variables be initialized?
What is default switch case? Give example.
What does replaceall do in java?
Name component subclasses that support painting in java programming?
What is difference between classpath and path variables in java?
How define set in java?