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

Explain tree set and its features?

1112


What is a lambda expression ? What's its use ?

1155


Describe 2 different ways to concatenate two strings.

1263


How do you pass by reference?

1106


Is it safe to install java on my computer?

1228


can java object be locked down for exclusive use by a given thread? : Java thread

1154


Which are different kinds of source code?

1165


Can we have two methods in a class with the same name?

1108


what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread

1034


What is the nested interface?

1161


What is oop principle in java?

1262


What is the most important feature of java? What is an interface?

1055


How do you remove duplicates from an array in java?

1010


Name four container classes.

1045


What is preflight request?

1091