多做题,通过考试没问题!

Java认证考试

睦霖题库>其他计算机考试>Java认证考试

For debugging purposes, you need to record how many times a given JSP is invoked before the user’ssession has been created. The JSP’s destroy method stores this information to a database. Which JSPcode snippet keeps track of this count for the lifetime of the JSP page?()

  • A、<%! int count = 0; %><% if ( request.getSession(false) == null ) count++; %>
  • B、<%@ int count = 0; %>. <% if ( request.getSession(false) == null ) count++; %>
  • C、<% int count = 0;. if ( request.getSession(false) == null ) count++; %>
  • D、<%@ int count = 0;. if ( request.getSession(false) == null ) count++; %>
  • E、<%! int count = 0;. if ( request.getSession(false) == null ) count++; %>
正确答案:A
答案解析:
进入题库查看解析

微信扫一扫手机做题