ตัวแปรที่ใช้ในแลมบ์ดานิพจน์ควรเป็นขั้นสุดท้ายหรือมีประสิทธิผลสุดท้าย
เมื่อฉันพยายามใช้calTz
มันแสดงข้อผิดพลาดนี้
private TimeZone extractCalendarTimeZoneComponent(Calendar cal, TimeZone calTz) {
try {
cal.getComponents().getComponents("VTIMEZONE").forEach(component -> {
VTimeZone v = (VTimeZone) component;
v.getTimeZoneId();
if (calTz == null) {
calTz = TimeZone.getTimeZone(v.getTimeZoneId().getValue());
}
});
} catch (Exception e) {
log.warn("Unable to determine ical timezone", e);
}
return null;
}
calTz
จากแลมด้า