时间:2021-07-01 10:21:17 帮助过:13人阅读
<%! static class Count { private static int count = 0; public static int getCount(){ count++; return count; } } %> <% out.print(Count.getCount()); %>
通过浏览器连续访问,会分别输出:1,2,3,4,5,6,........
通过浏览器连续访问,会分别输出:1,1,1,1,1,1,........
总结
1、java的static变量伴随着java虚拟机的退出而消亡,java虚拟机运行期间,static变量一直存在。
2、php的static变量只针对一次请求(一次php文件的执行),php文件执行完毕,该static变量也随机消亡,再次请求(再次执行该php文件),会重新创建该static变量。