Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

WAP to illustrate the use of interface

Answer Posted / siva mukesh

interface inf1
{
void show();
}
class Derived implement inf1
{
void show1()
{
S.o.p("Derived class method");
}
public void show()
{
S.o.p("Interface method");
}
}
class infdemo
{
p.s.v.m(String args[ ])
{
Derived d1= new Derived();
d1.show();
d1.show1();
}
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it possible to instantiate the abstract class?

956


what is meant by Byte code concept in Java?

1071


Can a static class have a constructor java?

992


how to write a server program and sending the mails to the server using smtp protocol please help me

2068


Explain some best practices you would apply while using collection in java?

1039


How define set in java?

1086


What is the purpose of garbage collection in java?

1105


Can we have return statement in finally clause? What will happen?

969


What is a functional interface?

1045


Define an enumeration?

1054


Is java se free?

946


What is import java util arraylist?

1185


What are the six ways to use this keyword?

1061


Which collection is ordered in java?

981


How destructors are defined in java?

1195