我正在研究应用程序的代码审查,我正在寻找一种设计模式,该模式可以消除多次调用一个方法的重复

UpdateAddress(InstallType.word, name, age);
UpdateAddress(InstallType.excel, name, age);
UpdateAddress(InstallType.powerpoint, name, age);


因此,在上面的示例中,UpdateAddress方法使用不同的参数多次调用。有什么好办法吗?

最佳答案

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)

关于c# - 调用设计模式的方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20544990/

10-13 05:00