在IE窗口访问JSP页面,其代码如下。然后连续刷新页面,输出的结果是X,紧接着重新启动一个新的IE窗口运行该JSP代码,连续刷新两次,输出的结果是Y,可能的X和Y的值分别是( )。
<%@ page contentType=”text/html; charset=GBK” %>
<% Integer cnt = (Integer)application.getAttribute(“hitCount”);
if ( cnt == null){
cnt = new Integer(1);
}else{
cnt = new Integer(cnt.intValue() +1 );
}
application.setAttribute(“hitCount”,cnt);
%>
<%=cnt%>
<%@ page contentType=”text/html; charset=GBK” %>
<% Integer cnt = (Integer)application.getAttribute(“hitCount”);
if ( cnt == null){
cnt = new Integer(1);
}else{
cnt = new Integer(cnt.intValue() +1 );
}
application.setAttribute(“hitCount”,cnt);
%>
<%=cnt%>
举一反三
- 下面的C#代码实现一个索引器: class TestIndex { public int[] Elements=new int[100]; public int Elements[int index] { get { retrun Elements[index]; } set { Elements[index]=value; } } } class Class1 { static void Main(string[] args) { TestIndex ti=new TesxtIndex(); Int cnt=0; for(cnt=0;cnt<5;cnt++) { ti.Elements[cnt]=cnt*cnt; } for(cnt=0;cnt<5;cnt++) { Console.WriteLine(ti[cnt].ToString()); } Console.ReadLine(); } } 代码最后执行结果为( )。
- 语句“VARIABLE CNT:INTEGER RANGE 0 TO 7999”的作用是( )
- 补充完整如下带同步清零,异步复位功能的4位累加器: module add4b (clk, rstn,clr,cnt); input clk, rstn, clr; output reg [3:0] cnt; always @(posedge clk or ___1____ rstn) if (___2___) cnt <= 4'b1111; else if (____3____) cnt <= 4'b0; else cnt <= cnt + 1'b1;
- 以下程序中,clk_50M为50MHz输入时钟,若想输出clk为2Hz的方波,则cnt的判断条件设置为多少?() always@(posedge clk_50M) begin if (cnt == ? ) begin clk2_hz = 1'b1; cnt = 0; end else begin cnt = cnt + 1; clk2_hz = 1'b0; end end always@(posedge clk2_hz) clk =~ clk;
- 要统计职工表中员工的个数,下面答案错误的是: A: declare @cnt intset @cnt=(select count(职工编号) from 职工表) print @cnt as 公司员工总数 B: declare int @cntset @cnt=(select count(职工编号) from 职工表) select @cnt as 公司员工总数 C: declare @cnt intselect @cnt=count(职工编号) from 职工表 select @cnt as 公司员工总数 D: declare @cnt intset @cnt=(select count(职工编号) from 职工表) print '公司员工总数'+Convert( varchar(20),@cnt)