counter.java

来自「CroftSoft Code Library是一个开源的可移植的纯Java游戏库」· Java 代码 · 共 67 行

JAVA
67
字号
     package com.croftsoft.core.math;

     import java.io.Serializable;
     import java.math.BigInteger;

     import com.croftsoft.core.lang.NullArgumentException;

     /*********************************************************************
     * An incrementable integer counter with no maximum limit.
     *
     * <p />
     *    
     * @version
     *   2001-03-30
     * @since
     *   2001-03-30
     * @author
     *   <a href="http://www.alumni.caltech.edu/~croft/">David W. Croft</a>
     *********************************************************************/

     public final class  Counter
       implements Serializable
     //////////////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////////////
     {

     private static final long  serialVersionUID = 1L;

     private BigInteger  count;

     //////////////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////////////

     public  Counter ( BigInteger  count )
     //////////////////////////////////////////////////////////////////////
     {
       NullArgumentException.check ( this.count = count );
     }

     public  Counter ( )
     //////////////////////////////////////////////////////////////////////
     {
       this ( BigInteger.ZERO );
     }

     //////////////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////////////

     public BigInteger  getCount ( )
     //////////////////////////////////////////////////////////////////////
     {
       return count;
     }

     /*********************************************************************
     * Synchronized.
     *********************************************************************/
     public synchronized BigInteger  increment ( )
     //////////////////////////////////////////////////////////////////////
     {
       return ( count = count.add ( BigInteger.ONE ) );
     }

     //////////////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////////////
     }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?