⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 counter.java

📁 一个自然语言处理的Java开源工具包。LingPipe目前已有很丰富的功能
💻 JAVA
字号:
/* * LingPipe v. 3.5 * Copyright (C) 2003-2008 Alias-i * * This program is licensed under the Alias-i Royalty Free License * Version 1 WITHOUT ANY WARRANTY, without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the Alias-i * Royalty Free License Version 1 for more details. * * You should have received a copy of the Alias-i Royalty Free License * Version 1 along with this program; if not, visit * http://alias-i.com/lingpipe/licenses/lingpipe-license-1.txt or contact * Alias-i, Inc. at 181 North 11th Street, Suite 401, Brooklyn, NY 11211, * +1 (718) 290-9170. */package com.aliasi.util;/** * A reassignable integer usable for counting.  Counters do not * override <code>Obect's</code> methods <code>hashCode()</code> or * <code>equals()</code>, so two counters with the same value are not * necessarily equal. * * <p>The value of a counter is stored as an integer.  No checks * are done in the increment methods to ensure that the results * remain within bounds. * * @author  Bob Carpenter * @version 1.0.7 * @since   LingPipe1.0 */public class Counter extends Number {    static final long serialVersionUID = -6794167256664036748L;    /**     * The count.     */    private int mCount;    /**     * Create a counter with initial count <code>0</code>.     */    public Counter() {        this(0);    }    /**     * Create a counter with the specified count value.     *     * @param count Initial value of counter.     */    public Counter(int count) {        mCount = count;    }    /**     * Returns the current count value.     *     * @return Current count value.     */    public int value() {        return mCount;    }    /**     * Increments the current count value.     */    public void increment() {        ++mCount;    }    /**     * Increment the count value by the specified amount.     *     * @param n Amount by which to increase the count value.     */    public void increment(int n) {        mCount += n;    }    /**     * Sets the count to the specified value.     *     * @param count New value of the counter.     */    public void set(int count) {        mCount = count;    }    /**     * Returns the value of this counter as a double.     *     * @return The value of this counter as a double.     */    public double doubleValue() {        return (double) mCount;    }    /**     * Returns the value of this counter as a float.     *     * @return The value of this counter as a float.     */    public float floatValue() {        return (float) mCount;    }    /**     * Returns the value of this counter as an int.     *     * @return The value of this counter as an int.     */    public int intValue() {        return mCount;    }    /**     * Returns the value of this counter as a long.     *     * @return The value of this counter as an int.     */    public long longValue() {        return (long) mCount;    }    /**     * Return a string representation of this counter's value.     *     * @return String representation of this counter's value.     */    public String toString() {        return String.valueOf(value());    }}

⌨️ 快捷键说明

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