标签: java lambda java-8 method-reference
目前我这样做:
.map((service) -> (ClassType) service.getList())
这是否有简写
.map((ClassType) Service::getList)