在Java中獲取當前年份的最佳實踐是使用java.time包中的LocalDate類或Year類。以下是兩種方法:
import java.time.LocalDate;
LocalDate currentDate = LocalDate.now();
int year = currentDate.getYear();
System.out.println("Current year: " + year);
import java.time.Year;
Year currentYear = Year.now();
int year = currentYear.getValue();
System.out.println("Current year: " + year);
這兩種方法都能夠獲取當前的年份。推薦使用java.time包中的類來處理日期和時間,因為它們提供了更多的功能和更好的性能。