tokenoccurrence.java
来自「wekaUT是 university texas austin 开发的基于wek」· Java 代码 · 共 21 行
JAVA
21 行
package weka.deduping.metrics;/** A lightweight object for storing information about an occurrence of a token (a.k.a word, term) * in a Document. * * @author Ray Mooney */public class TokenOccurrence { /** A reference to the Document where it occurs */ public StringReference m_stringRef = null; /** The number of times it occurs in the Document */ public int m_count = 0; /** Create an occurrence with these values */ public TokenOccurrence(StringReference stringRef, int count) { m_stringRef = stringRef; m_count = count; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?