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实例

09-11 18:30