标签: java-8 optional
如何以优雅的方式从Optional创建OptionalInt?
Optional<Integer> int1 = Optional.of(1); OptionalInt int2 = ??;