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