zxl
2025-10-29 fea22e82e7e49691f6e0c20a29b228d0ab3173e9
1
2
3
4
5
6
7
package com.ycl.calculate;
 
import java.util.List;
 
public interface CalculationStrategy<T> {
    void calculate(List<T> list);
}