简体   繁体   中英

In java if we define a class while creating its object, what is such a class called?

If in java we have a class A like in the following code what is the special name for it?

public static void main(String args[])
{ obj= new A()
           { ....
           };
}

This is an anonymous inner class .

Here is a short tutorial regarding these inner classes: http://www.roseindia.net/javatutorials/anonymous_innerclassestutorial.shtml

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM