gpt4 book ai didi

Java 8 可选代码审查

转载 作者:行者123 更新时间:2023-12-03 22:42:02 26 4
gpt4 key购买 nike

<分区>

我只是想检查我是否做对了。这是使用可选的正确方法还是可以改进?

String longitudeResult = "Address_Longitude is empty or null;";
String latitudeResult = "Address_Latitude is empty or null;";
if (Optional.ofNullable(location).isPresent()) {
Optional<Double> longitude = Optional.ofNullable(location.getLongitude());
Optional<Double> latitude = Optional.ofNullable(location.getLatitude());
if (longitude.isPresent()) {
longitudeResult = longitude.get().toString();
}
if (latitude.isPresent()) {
latitudeResult = latitude.get().toString();
}
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com