|
Java Source Codes
HashSet Example
/**
*
* @author jimmi.prajapati
*
*/
public class Hashsetdemo
{
public static void main(String args[])
{
HashSet h=new HashSet();
h.add("k");
h.add("b");
System.out.println(h);
}
}
<<<----- Return to
Java Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Java Interview
Questions for more Java Interview Questions with answers
Check
Servlet Interview
Questions for more Servlet Interview Questions with answers
Check
Structs Interview
Questions for more Structs Interview Questions with answers
|