我在 Web Application 中有这个 Singleton 类。
public class MyDAO
{
private static MyDAO instance;
private MyDAO() {
}
public static MyDAO getInstance() {
if (instance == null) {
instance = new MyDAO();
}
return instance;
}
我将以这种方式访问它
public void get_Data()
{
MyDAO dao = MyDAO.getInstance();
}
如果有 3 个用户访问应用程序,将创建多少个 MyDAO 类的对象?
每个用户会有一个 MyDAO 实例吗?