Counter.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:0k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.mockobjects.util;
  2. /**
  3.  * $Id: Counter.java,v 1.1 2002/12/06 19:13:32 vanrogu Exp $
  4.  */
  5. public class Counter {
  6.     protected int count;
  7.     public Counter ( ) {
  8.         count = 0;
  9.     }
  10.     public synchronized void increment ( ) {
  11.         count = count + 1;
  12.     }
  13.     public synchronized int getValue ( )  {
  14.         return count;
  15.     }
  16. }