tagworditem.java
来自「基于中科院的ICTCLAS实现中文分词系统 开发工具是JAVA.经测试,效果很好」· Java 代码 · 共 49 行
JAVA
49 行
package com.gftech.ictclas4j.utility;
public class TagWordItem {
int wordLen;
byte[] word;
// the process or information handle of the word
int handle;
// The count which it appear
int frequency;
public int getFrequency() {
return frequency;
}
public void setFrequency(int frequency) {
this.frequency = frequency;
}
public int getHandle() {
return handle;
}
public void setHandle(int handle) {
this.handle = handle;
}
public byte[] getWord() {
return word;
}
public void setWord(byte[] word) {
this.word = word;
}
public int getWordLen() {
return wordLen;
}
public void setWordLen(int wordLen) {
this.wordLen = wordLen;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?