vote up 3 vote down star
2

After using them a while I can't help but feel that the hoops you're forced to jump through when using anonymous classes are not worth it.

You end up with final all over the place and no matter what the code is more difficult to read than if you'd used a well named inner class.

So what are the advantages of using them? I must be missing something.

flag

5 Answers

vote up 7 vote down check

The advantage is that it's an implementation of closures. It's clunky, but it's the best we've got in Java at the moment. In other words, you don't have to create a new class just for the sake of preserving some state which you've already got as a local variable somewhere.

I have an article comparing C# and Java closures, and why they're useful in the first place, which might help.

link|flag
I was under the impression that Java's anonymous inner classes did NOT close on their environment, but don't have a citation or example to support myself. – hark Nov 6 '08 at 16:30
They do, but the only variables you can access from the outer scope are those which are declared final. – Eli Courtwright Nov 6 '08 at 16:48
I'm not sure about this either. If I understand closures, you can pass around a reference to a closure and it retains references to the bound variables of the enclosing scope where it was created. I think that's missing in anonymous classes in Java. – Bill the Lizard Nov 6 '08 at 16:51
1  
It basically fake closures. It copies the values into the new class. Given that you've only got read-only access anyway, and the variables are final, it's reasonably close to closures. It's a copy of the environment instead of the environment itself, but that's very often close enough. – Jon Skeet Nov 6 '08 at 17:02
vote up 3 vote down

Well I usually only use it when needing an implementation of an interface for a single purpose (and an interface with few functions or the code because really fast ugly)... like in the following example :

this.addListener(new IListener(){
    public void listen() {...}
});
link|flag
vote up 1 vote down

I generally limit anonymous classes to just a few lines. Anything longer than, say 5, make a named class.

link|flag
Or at least a static nested class – matt b Nov 6 '08 at 16:49
vote up 1 vote down

I recommend you this article that I found very enlightening.

You say that final keyword is all over the place but, with a local class, you still have to pass the state of the enclosing class witch can also be bad for readability.

link|flag
vote up 0 vote down

Yes they are.

Actually, non static inner classes are dangerous. Especially if they keep a reference to the containing object, it is a very common source of memory leaks because of cyclic references.

You can use them, just be very careful.

link|flag
Java GC can cope with circular references, surely!? – mackenir Nov 6 '08 at 16:42
Reasonable Java implementation will cope with ciruclar references. However, inner classes may still retain an unwanted strong ref to the outer instance. The significant problem in this space is listeners for short lived objects being registered on long lived sources, but that is an orthogonal issue. – Tom Hawtin - tackline Nov 6 '08 at 17:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.