Explain Linked HashSet



Explain Linked HashSet..

Answer / hrindows@gmail.com

Java LinkedHashSet class is a Linked list and Hash table implementation of the Set interface. It contains unique elements same as a HashSet. Linked HashSet in Java also provides optional set operations that can maintain the order of insertion.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is stored procedure. How do you create stored procedure ?

0 Answers   GE,


What is difference between static class and normal class?

0 Answers  


What is the purpose of final keyword and when to use it?

0 Answers  


Explain about exception propagation?

0 Answers  


What is fail fast in java?

0 Answers  






What is difference between an object and a class?

0 Answers   Amdocs,


Why do we create threads in java?

0 Answers  


What is the java project architecture?

0 Answers   IBM,


Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use AbstractList class methods(java.util.AbstractList) My Program is import java.util.*; class DemoOne extends AbstractList { public static void main(String[] args) { AbstractList a=new DemoOne();//This One is Correct?? DemoOne a1=new DemoOne();//This One is Correct?? Both Are Not Working System.out.println("Hello World!"+a); System.out.println("Hello World!"+a1); } } Error IS: DemoOne.java:2: DemoOne is not abstract and does not override abstract method get(int) in java.util.AbstractList class DemoOne extends AbstractList AnyOne can Please Provide The Solution????????????????????????? Plzzzzzzz

3 Answers  


can we write two same methods in outer class and innerclass.

1 Answers   3i Infotech,


What is the difference between call by reference and call by pointer?

0 Answers  


Can string be considered as a keyword?

0 Answers  


Categories