学院首页>网络编程>JSP>jsp计数器-bean文件

jsp计数器-bean文件

作者: 来源:不详 添加时间:2006-5-25 20:24:59
  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;
}
}

 
站内搜索