can annonymous class be treated as final class
Both annonymous classes and final classes cannot be inherted can both be treated as same . What is basic difference between these two classes ..?
[152 byte] By [
tony_aima] at [2007-11-27 7:38:10]

... and one is marked 'final', which is the reason it can't be subclassed, whereas an anonymous class can't be subclassed because there is no way to name it in the 'extends' clause.
ejpa at 2007-7-12 19:18:42 >
