xiangpei
2024-09-29 89a7399256f6ea63af45e825eb409193c4c85ceb
1
2
3
4
5
6
7
package com.ycl.calculate;
 
import java.util.List;
 
public interface CalculationStrategy<T> {
    void calculate(List<T> list);
}