有没有办法将此方法修改为lambda函数?
public static <T> void checkResponse(Response<T> response, String errorMessage, Map<String,String> values) throws IOException {
if (!response.isSuccessful()) {
String message = StringSubstitutor.replace(errorMessage, values);
logger.error(message);
throw new RuntimeException(message, null);
}
}
1条答案
按热度按时间ipakzgxi1#
首先,使用适当的参数定义一个接口,然后可以使用lambda来实现它。