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

📄 tagworditem.java

📁 基于中科院的ICTCLAS实现中文分词系统 开发工具是JAVA.经测试,效果很好
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -