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 parsing and its types?

0 Answers  


transaction attributes ?

2 Answers  


How do you define a set in java?

0 Answers  


Is it possible to declare abstract class as final?What happens if we do so?

1 Answers  


Define immutable object?

0 Answers  


What is pass by value?

0 Answers  


how to deploy apache tomcat server to weblogic server in java

0 Answers   IBM,


Can we use this () and super () in a method?

0 Answers  


Why does java not allow multiple public classes in a java file ?

2 Answers  


how system.out.println() works?

2 Answers  


What is the use of singleton?

0 Answers  


Can sleep() method causes another thread to sleep?

0 Answers  


Categories