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


What is an anonymous class?



What is an anonymous class?..

Answer / sai

An anonymous class is a local class without a name. An
anonymous class is defined and instantiated in a single
succinct expression using the new operator.

Example:
class popcorn{
public void eat(){
syso("popcorn is sweet");
}
public void m1(){
syso("popcorm method");
}
class sample{
public static void main(String args[]){
popcorn p = new popcorn(){
public void eat(){
syso("popcorn is so hot");
}
};
p.eat();
p.m1();
}
}

Is This Answer Correct ?    17 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is the default size of set in java?

0 Answers  


Can we override the private methods?

0 Answers  


What is a parameter in java?

0 Answers  


What are different type of access modifiers?

3 Answers  


What is anonymous inner class?

0 Answers  


Can list be null in java?

0 Answers  


What is an infinite loop? How infinite loop is declared?

0 Answers  


Is it possible to compare various strings with the help of == operator? What are the risks involved?

0 Answers  


What is finalize()? Is finalize() similar to a destructor?

0 Answers  


How is the marker interface used in Java?

0 Answers   BirlaSoft,


What is a parent class in java?

0 Answers  


What are the difference between composition and inheritance in java?

0 Answers  


Categories