Anonymous object: It is an object without a name
new student();
Application scenarios of anonymous objects:
1. Only call the method in the object once
Note: It is not appropriate to call it multiple times
What are the methods for calling methods on anonymous objects?
After the anonymous object is called, it is garbage and can be recycled by the garbage collection period.
2. Anonymous objects can be passed as actual parameters.
The above is the detailed content of Application of JAVA anonymous objects. For more information, please follow other related articles on the PHP Chinese website!