标签: java java-8 optional
我将Optional<String>转换为Integer .map(Integer::parseInt)。如果字符串无法解析为NumberFormatException,有没有办法避免int?
Optional<String>
Integer
.map(Integer::parseInt)
NumberFormatException
int
我想避免try/catch声明。
try/catch
答案 0 :(得分:0)
使用Google Guava Ints.tryParse
Ints.tryParse
map(Ints::tryParse)