Lately I see a lot of code like Optional.ofNullable(i).orElse(x->doBla(x)); instead of a old known: if (i != null) { doBla(i); } It is ...
確定! 回上一頁