public class Factoryclass
{
public static MyClass returnObject(String str)
{
// Based on the parameter passed it will retrn some class
}
}
如果在Web应用程序中,则有100个请求。
现在,请告诉我将创建多少个Factoryclass对象?
最佳答案
如果你这样做
Factoryclass.returnObject()
除非您在
Factoryclass
方法中执行new Factoryclass()
,否则不会创建任何returnObject
实例