摘要: # 1.函数式接口 只能含有1个方法的接口,入参可以有多个,出参可有可无 定义接口 ```java @FunctionalInterface public interface ReceiverGetter { List apply(ResGroup resGroup); } ``` 使用策略模式使用 阅读全文
posted @ 2023-01-05 18:40 SpecialSpeculator 阅读(48) 评论(0) 推荐(0) 编辑