How are Anonymous inner classes used in Java?

后端 未结 18 1336
孤独总比滥情好
孤独总比滥情好 2020-11-21 05:19

What is the use of anonymous classes in Java? Can we say that usage of anonymous class is one of the advantages of Java?

18条回答
  •  迷失自我
    2020-11-21 05:39

    One more advantage:
    As you know that Java doesn't support multiple inheritance, so if you use "Thread" kinda class as anonymous class then the class still has one space left for any other class to extend.

提交回复
热议问题