What is the use of anonymous classes in java? Can we say that usage of anonymous class is one of the advantages of java?
|
|
By an "anonymous class", I take it you mean anonymous inner class. An anonymous inner class can come useful when making an instance of an object which certain "extras" such as overloading methods, without having to actually subclass a class. I tend to use it as a shortcut for attaching an event listener:
Using this method makes coding a little bit quicker, as I don't need to make an extra class that implements I only use this technique for "quick and dirty" tasks where making an entire class feels unnecessary. Having multiple anonymous inner classes that do exactly the same thing should be refactored to an actual class, be it an inner class or a separate class. |
|||||||||
|
|
Anonymous inner classes are effectively closures, so they can be used to emulate lambda expressions or "delegates". For example, take this interface:
You can use this anonymously to create a first-class function in Java. Let's say you have the following method that returns the first number larger than i in the given list, or i if no number is larger:
And then you have another method that returns the first number smaller than i in the given list, or i if no number is smaller:
These methods are almost identical. Using the first-class function type F, we can rewrite these into one method as follows:
You can use an anonymous class to use the firstMatch method:
This is a really contrived example, but its easy to see that being able to pass functions around as if they were values is a pretty useful feature. See "Can Your Programming Language Do This" by Joel himself. A nice library for programming Java in this style: Functional Java. |
|||||||||||||||
|
|
They're commonly used as a verbose form of callback. I suppose you could say they're an advantage compared to not having them, and having to create a named class every time, but similar concepts are implemented much better in other languages (as closures or blocks) Here's a swing example
Although it's still messily verbose, it's a lot better than forcing you to define a named class for every throw away listener like this (although depending on the situation and reuse, that may still be the better approach) |
|||
|
|
|
You use it in situations where you need to create a class for a specific purpose inside another function, e.g., as a listener, as a runnable (to spawn a thread), etc. The idea is that you call them from inside the code of a function so you never refer to them elsewhere, so you don't need to name them. The compiler just enumerates them. They are essentially syntactic sugar, and should generally be moved elsewhere as they grow bigger. I'm not sure if it is one of the advantages of Java, though if you do use them (and we all frequently use them, unfortunately), then you could argue that they are one. |
|||
|
|
|
Yes, anonymous inner classes is definitely one of the advantages of Java. With an anonymous inner class you have access to final and member variables of the surrounding class, and that comes in handy in listeners etc. But a major advantage is that the inner class code, which is (at least should be) tightly coupled to the surrounding class/method/block, has a specific context (the surrounding class, method, and block). |
|||
|
|
|
I use them sometimes as a syntax hack for Map instantiation:
vs
It saves some redundancy when doing a lot of put statements. However, I have also run into problems doing this when the parent class needs to be serialized via remoting. |
|||||||
|
|
GuideLines for Anonymous Class.
eg:
|
|||
|
|
This is also one of the example for anonymous inner type using thread |
|||
|
|
|
One of the major usage of anonymous classes in class-finalization which called finalizer guardian. In Java world using the finalize methods should be avoided until you really need them. You have to remember, when you override the finalize method for sub-classes, you should always invoke so considering the fact mentioned above, you can just use the anonymous classes like:
Using this technique you relieved yourself and your other developers to call |
||||
|
|
