我SimpleNLG 4.4.2
用来获取名词的复数形式:
final XMLLexicon xmlLexicon = new XMLLexicon();
final WordElement word = xmlLexicon.getWord("apple", LexicalCategory.NOUN);
System.out.println(word);
System.out.println(word.getFeature(LexicalFeature.PLURAL));
然而,即使对于这个简单的例子,getFeature
返回null
而不是apples
. 我究竟做错了什么?