我有类似以下的情况:
/** Get a list of records */
public ArrayList<Record> foo() throws BazException{
// Create the list
static ArrayList<Record> records = new ArrayList<Record>();
// Use MyLibrary to load a list of records from the file
String str = SomeoneElsesLibrary.loadData(new File("mydata.dat"), new DataLoader(){
// will be called once for each record in the file
String processRecord(Record r){
// if there's no "bar", invalid record
if( ! r.hasField("bar") ){
throw new BazException();
}
records.add(r);
}
});
return records;
}
显然这不起作用,因为SomeoneElsesLibrary
不知道 aBazException
是什么。我也不能说processRecord() throws BazException
,因为那时原型将不再匹配。我开始认为我对这个实现的整体结构是错误的。(我正在从 Node.JS 成瘾中恢复过来,必须重新学习一些大多数 Java 模式。)我将如何重组我的代码以使其更符合 Java 的习惯?
伪代码很好,甚至只是描述。另外,不要觉得你需要使用匿名内部类,就像我第一次尝试时那样;我只是在寻找“Java 方式”来做到这一点。