about interface

about interface

View Answers

May 13, 2008 at 3:51 PM

Hi friend,

import java.util.*;
import java.io.*;

public class SetHashset{

public static void main(String args[]){
Set<String> set = new HashSet<String>();
Set<String> dups = new HashSet<String>();
for (String a : args)
if(!set.add(a))
dups.add(a);
// Destructive set-difference
set.removeAll(dups);
System.out.println("Unique words: " + set);
System.out.println("Duplicate words: " + dups);
}
}


-------------------------------------

read for more information,

http://www.roseindia.net/java/









Related Tutorials/Questions & Answers:
about interface - Java Beginners
about interface  can anyone explain to me the implementation of the given line Set si=new HashSet(); Problem is that Set is an interface and HashSet is a class... so how instantiation of interface is possible..or..what
interface
interface   what is the use of marking interface
Advertisements
Java Interface
Java Interface In this section we will discuss about the interface in Java... will demonstrate you about how to write and use an interface in Java... will be end for :ADS_TO_REPLACE_1 1. Can an interface implements another interface ? 2
interface.
interface.  Write short note on interface.   Please visit the following link: Java Interface
Identify correct and incorrect statements or examples about the client view of an entity bean's local component interface (EJBLocalObject).
Identify correct and incorrect statements or examples about the client view of an entity bean's local component interface (EJBLocalObject...;   Identify correct and incorrect statements or examples about the client
interface
interface  will the interface implements a interface   Hi Friend, No. Interface can extends another interface but cannot implements it, because interface will not contain the implementation. Thanks
Identify correct and incorrect statements or examples about the client view of a entity bean's remote component interface (EJBObject).
Identify correct and incorrect statements or examples about the client view of a entity bean's remote component interface (EJBObject...;   Identify correct and incorrect statements or examples about
AsyncContext Interface dispatch method
In this section, you will learn about dispatch method of AsyncContext Interface
AsyncContext Interface important methods
In this section , you will get to know about important methods of AsyncContext Interface
AsyncListener Interface important methods
In this section, you will get to know about important methods AsyncListener Interface
AsyncContext Interface addListener
In this section, you will learn about addListener method of AsyncContext Interface
INTERFACE
INTERFACE  how interface support multiple inheritance in java
interface
interface   Hi I have interface in that interface 3 methods are there , after some days client said that,i want to add one more method in that interface ,so how can add 4 method so that the implemented class did not affect
interface
interface  can we extend interface?   Hi Friend, Yes an interface can be extended by other interface like using extends keyword interface A{ } interface B extends A{ } For Example: interface IntefaceA { void
interface
interface  what the use of interface?   An interface is one... variables.Any class can implement(inherit)the interface and make use... is achieved by using the interface (by implementing more than one interface at a time
View Resolving through ViewResolver interface
In this section, you will learn about resolving view through ViewResolver interface
interface
interface  What is marker interface ?? what is its use in java programming?? is this us in programming ??Explain is implementation with code
interface
interface  develop a library interface which has drawbook(),returnbook()(with fine),checkstatus() and reservebook() methods.all the methods tagged with public
interface
interface  develop a library interface which has drawbook(),returnbook()(with fine),checkstatus() and reservebook() methods.all the methods tagged with public
Interface
for Interface in java? and want to know why they used interface instead of multiple inheritance? Thanks in advance   An interface is one which has abstract... implement(inherit)the interface and make use of the methods(functions
interface
interface  why do we need interface in java..if it`s usefull for to obtain multiple inheritance in the sense how it gonna be achieved...and i can...)...the y we need interface...THis is question often i heard from my developer
Interface
Interface  I need to implement the interface without overriding its method and also don't use abstract class for this. How to do
interface
interface  What is the exact use of interface in real time scenario? some people says that interface provides multiple inheritance. Is it true...; Through interface, we can achieve the multiple inheritance. Java does
Interface
Interface  1.Create an interface names ShapeInterface that has two... class a.Rectangle that uses the interface b.Circle that uses the interface and abstract class   interface ShapeInterface{ int l=0,b=0; public
Interface
Interface  1.Create an interface names ShapeInterface that has two... class a.Rectangle that uses the interface b.Circle that uses the interface and abstract class   interface ShapeInterface{ int l=0,b=0; public
Interface
Interface  Declare an Interface called property containting a method compute price to compute &return the price.The inerface is to be implemented by follwaing two class (1)Bungalow&(2)Flat both the lasses have following
Interface in java
An interface must be declared with the keyword interface. An interface is 100% pure abstract class that's mean an interface can have only abstract method.... Interface methods are by default public and abstract, you can explicitly declare
JdbcRowSet interface
JdbcRowSet interface In this section we will read about the JdbcRowSet interface in Java. javax.sql.rowset.JdbcRowSet is an interface which is a wrapper... the ResultSet objects scrollable and updatable. Object of interface
Interface in Java
Interface in Java       In this section we will learn about Interface and Marker Interfaces in Java. This tutorial will clarify your questions "What is marker Interface?"
Interface in java with example
We are going to discuss about Interface in Java. Interface is blueprint of a class. Interface is a collection of abstract methods. Interface has only... it by other interface. We can extend one or more other interfaces but cannot
Java ServletResponse Interface
Java ServletResponse Interface In this tutorial, we will discuss about ServletResponse Interface. javax.servlet.ServletResponse Interface : It is defined... and javax.servlet.http. ServletResponse interface defines object to send response
Java ServletConfig Interface
Java ServletConfig Interface In this tutorial, we will discuss about ServletConfig Interface. ServletConfig Interface : The servlet container uses... this interface.ADS_TO_REPLACE_1 This interface has following four methods
Result interface in Struts 2.2.1
Result interface in Struts 2.2.1 Struts Result interface is a public interface of package com.opensymphony.xwork2. It extends Serializable interface. All...(ActionInvocation invocation). It represents a generic interface for execution results
Java ServletContext Interface
Java ServletContext Interface In this tutorial, we will discuss about ServletContext Interface. ServletContext Interface : ServletContext defines set of methods that helps servlet to communicate with its servlet container
Java ServletRequest Interface
Java ServletRequest Interface In this tutorial, we will discuss about Servlet Request Interface. ServletRequest Interface : ServletRequest interface defines object to handle client request and provide it to the servlet.object
Interface in Java
Interface in Java Interface in java programming languages is a collection of abstract methods. A class must implements interface. An interfaces are declared using interface keyword. The variable inside  interface are 
Runnable interface in java
In this section we will learn about Runnable interface in java. In java thread are created by two ways, one by extending Thread class and another one by implementing Runnable interface
Search Engine Interface
Search Engine Interface       In this section we will describe about the search and index interface of our search engine. For searching and displaying the result we
IResponder interface
IResponder interface  Hi..... I have a problem regarding what the IResponder interface consists of and how it is used? please tell me about that........ Thanks
Introduction to Action interface
Introduction To Struts Action Interface The Action interface contains the a single method execute(). The business logic of the action is executed within this method. This method is implemented by the derived class. For example
Java Runnable Interface
Java Runnable Thread is a piece of the program execution. Java Runnable is an interface. Thread class implements it. Java has multithreading facility. Thread is also created by implementing the Runnable interface. Java
JDBC DataSource Interface Example
.style1 { text-align: center; } Using javax.sql.DataSource Interface DataSource interface is an alternative to the DriverManager class... program. An Example of javax.sql.DataSource interface is given below CREATE TABLE
What is an interface?
What is an interface?  What is an interface
Can an Interface implement another Interface?
Can an Interface implement another Interface?   Hi, Can an Interface implement another Interface? Thanks
Can an Interface extend another Interface?
Can an Interface extend another Interface?   Hi, Can an Interface extend another Interface? thanks
ServletRequest interface
ServletRequest interface   What is new in ServletRequest interface
About Main
About Main  can u create the object of one interface ? But i can able to create the abstract class through anonimous inner class.similarly can i
About Main
About Main  can u create the object of one interface ? But i can able to create the abstract class through anonimous inner class.similarly can i
Marker Interface,Java Marker Interface
Interface in Java       In this section we will learn about Interface and Marker Interfaces in Java. This tutorial will clarify you questions "What is marker Interface?"
Map interface
Map interface  What is the Map interface

Ads