PC6下载站

分类分类

jsp计数器-bean文件

关注+2004-11-07作者:蓝点

import java.io.Serializable;



public class Counter implements Serializable{



// Initialize the bean on creation

int count = 0;



// Parameterless Constructor

public Counter() {



}



// Property Getter

public int getCount() {



// Increment the count property, with every request

count++;



return this.count;

}



// Property Setter

public void setCount(int count) {



this.count = count;

}

}




展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消