📄 tokenoccurrence.java
字号:
package ir.vsr;/** 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 DocumentReference docRef = null; /** The number of times it occurs in the Document */ public int count = 0; /** Create an occurrence with these values */ public TokenOccurrence(DocumentReference docRef, int count) { this.docRef = docRef; this.count = count; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -