What are inner and anonymous class?
Answers were Sorted based on User's Feedback
Answer / janet
Inner Class: classes defined in other classes ,including
those defined in methods are called inner classes.
An inner class can have any accessiblity including private.
Anonumous class: Anonymous class is a class defined inside
a method without a name and is instantiated and declared in
the same place and cannot have explicit constructors.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sathya
Inner classes as name suggests, can be declared within a
class, as for that matter, with in a for statement too... or
with in a method of another class.
Anonymous classes are also inner classes but without a name,
The advantage being more abstraction of code, but more
confusing to beginners
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / harika.thota001@gmail.com
Inner Class in java so called nested class is nothing but a class that is being defined inside another class. Inner classes are beneficial in two scenarios i.e. access control and naming control. Although these benefits can be acquired using java packages.
anonymous class is an inner class that does not have a name at all. And whose instance is being created at the time of its creation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Convert a BST into a DLL and DLL to BST in place.
What is gc()?
Enlist few advantages of inheritance?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?
What are the advantages of exception handling in java?
What is namespace in java?
What kind of variables a class can consist of?
What is this keyword in java?
Which api is provided by java for operations on set of objects?
Relationship between an event-listener interface and an event-adapter class?
What is meant by vector class, dictionary class, hash table class, and property class?
what is inner class?