摘要: 接受两个参数的函数是BiFunction: BiFunction<Integer, Integer, Integer> f3 = (x, y) -> x + y; 不接受参数的函数是Supplier: Supplier<Double> f4 = () -> Math.random(); 或相当于: 阅读全文
posted @ 2021-12-12 21:33 八英里 阅读(4436) 评论(0) 推荐(0) 编辑
摘要: package com.exe.competency.service.impl; import com.exe.competency.domain.RuleParam; import com.exe.competency.domain.RuleResult; import org.springfra 阅读全文
posted @ 2021-12-12 10:25 八英里 阅读(833) 评论(0) 推荐(0) 编辑