What is anonymous class?
Answers were Sorted based on User's Feedback
Answer / niranjanravi
An Anonymous class is a class which is defined at run time
without having any name and it is instantiated and declared
at the same place.
Syntax:
new class classname(){}
new interface interfacename(){}
Keyword extends and implements are usedin this class.
It is always implicitly final.
It is never static or final.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rimjhim
it is a local inner class without any name.
it is instantiated at the time of declaration and must be
extended by a class or implemented by an interface.
new [class name](argument list){anonymous class body};
overridden functions can be declared in this calss and it
can have only one new method inside it.more than one can
not be called anywhere.
using dot operator we can call that new function.
| Is This Answer Correct ? | 2 Yes | 1 No |
Why java Don't Support Multiple interitence
Which types of exceptions are caught at compile time?
What is the differenc between Enemuration interface and iterator interface according to accessing?
What are the methods used to implement for the key object in the hash map?
How we get some middle records in one table?
What is the major advantage of external iteration over internal iteration?
java program with complete 4 oops concepts implemented example
. Differentiate between instance and local variables.
What is the method used to get the absolute value of a number?
Java is Pass by Value or Pass by Reference?
In which language JVM (Java Virtual Machine) is implemented
Can we have try without catch block?