public class AddOperation implements Operation { public int compute(int a, int b) { return a + b; } } public class SubtractOperation implements Operation { public int compute(int a, int b) { return a - b; } } 次スライドに続く 第⼀問 これは、どちらのデザインパターン?
{ this.operation = operation; } public void setOperation(Operation operation) { this.operation = operation; } public int calculate(int a, int b) { return operation.compute(a, b); } } 第⼀問 これは、どちらのデザインパターン?
public class AddOperation implements Operation { public int compute(int a, int b) { return a + b; } } public class SubtractOperation implements Operation { public int compute(int a, int b) { return a - b; } } 次スライドに続く 第⼀問 解説 Strategy パターン
{ this.operation = operation; } public void setOperation(Operation operation) { this.operation = operation; } public int calculate(int a, int b) { return operation.compute(a, b); } } 第⼀問 解説 Strategy パターン