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...

can you create interface instance ?

Answer Posted / shankar patil

You can't create an object without method implementations.
Anonymous inner classes allow you to do.

public interface MyInterface {
public void myMethod() ;
}

MyInterface myIntfObj = new MyInterface() {
public void myMethod() {
}
};

myIntfObj.myMethod();

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is primitive array?

864


How garbage collection is done in java?

1000


How do you call a reference in java?

922


What steps are taken when the OS shifts from one-thread execution to another?

1319


What is autoboxing in java?

1025


What is the range of a character variable?

946


Which is best ide for java?

1003


What is meant by local variable and instance variable?

987


What is final keyword?

1099


What are the two environment variables that must be set in order to run any java programs?

914


What is the purpose of using java.lang.class class?

968


Which eclipse is best for java?

962


What is broken and continue statement?

949


What is module in project?

903


Explain about main() method in java ?

1014