9
ストラテジパターンを使用すると、アルゴリズム実装の中には同じパラメータリストを必要としないものがあります。ストラテジパターンの可変パラメータ
public interface Strategy{
public void algorithm(int num);
}
public class StrategyImpl1 implements Strategy{
public void algorithm(int num){
//num is needed in this implementation to run algorithm
}
}
public class StrategyImpl2 implements Strategy{
public void algorithm(int num){
//num is not needed in this implementation to run algorithm but because im using same
strategy interface I need to pass in parameter
}
}
例えば
は、私が使用する必要があります異なるデザインパターンがありますか?