我正在开发一个app的Code Review。我正在寻找一种设计模式,可以删除多次调用一个方法的重复,如
UpdateAddress(InstallType.word, name, age);
UpdateAddress(InstallType.excel, name, age);
UpdateAddress(InstallType.powerpoint, name, age);
因此,在上面的示例中,UpdateAddress方法使用不同的参数调用多次。有什么好办法吗?
答案 0 :(得分:2)
for (InstallType t: InstallType.values) {
UpdateAddress(t, name, age);
}
但实际上UpdateAddress应该被称为updateAddress。
如果您能够修改UpdateAddress,则可以将方法更改为:
void updateAddress(Collection<InstallType> types, name, age)
或
void updateAddress(name, age, InstallType... types)