我刚开始使用 Java,但在使用以下代码时遇到了问题。我正在使用这样的东西从静态方法调用非静态应用方法,但我认为它不是很有效。我设置了需要应用的规则的数组列表,但我无法让它工作。
ClassificationRule rules = new RuleFirstOccrnc();
ClassificationRule rules1 = new RuleOccrncCount();
rules.apply(aUserInput);
rules1.apply(aUserInput);
尝试从 ClassificationRule 调用 apply() 方法时出现此错误“方法 apply(String) 未定义用于类型 ArrayList”。任何帮助将不胜感激!
package tweetClassification;
import java.util.ArrayList;
public class PrioritRuls {
//Set of rules to be applied
final static ArrayList<ClassificationRule> rulesA
= new ArrayList<ClassificationRule>();
static{
rulesA.add( new RuleFirstOccrnc() );
rulesA.add( new RuleOccrncCount() );
}
// *******************************************
public static void prioritize( final String aUserInput ){
rulesA.apply(aUserInput); //ERROR
// The method apply(String) is undefined
// for the type ArrayList<ClassificationRule>
}
}
package tweetClassification;
public class ClassificationRule {
// *******************************************
public void apply (final String aUserInput) {
apply( aUserInput );
}
}