?? word.java
字號:
package com.xjt.nlp.word;/** * <p>Title: Java中文分詞組件</p> * <p>Description: 本組件以中科院ICTCLAS系統(tǒng)為基礎(chǔ),在其基礎(chǔ)之上改編,本組件僅供學(xué)習(xí)和研究用途,任何商業(yè)用途將自行承擔(dān)法律后果,與組件編寫人無關(guān)。</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: 北京師范大學(xué)</p> * @author 陳天 * @version 1.0 */public class Word { private String word; private String attribute; public Word() { } public Word(String word,String attribute){ this.word = word; this.attribute = attribute; } public String getWord() { return word; } public void setWord(String word) { this.word = word; } public String getAttribute() { return attribute; } public void setAttribute(String attribute) { this.attribute = attribute; } public String toString(){ return this.word+"/"+this.attribute; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -