0

z.JSP 中的代码 我只想在对象 y 不存在时创建它。我做了一个研究,但找不到它是怎么回事。

4

1 回答 1

1

你的意思是:

if(request.getSession().getAttribute("yy") == null) {
  usecase y = new y();
  request.getSession().setAttribute("yy", y);
}

可以进一步简化为:

if(session.getAttribute("yy") == null) {
  usecase y = new y();
  session.setAttribute("yy", y);
}

顺便说一句,了解Java 命名约定

于 2012-07-15T08:30:35.670 回答