在Java中,你可以使用java.time
包中的YearMonth
类和LocalDate
类来获取当前月份。以下是两种方法的示例:
方法1:使用YearMonth
类
import java.time.YearMonth;
public class Main {
public static void main(String[] args) {
YearMonth currentMonth = YearMonth.now();
System.out.println("当前月份: " + currentMonth);
}
}
方法2:使用LocalDate
类
import java.time.LocalDate;
public class Main {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
int month = currentDate.getMonthValue();
System.out.println("当前月份: " + month);
}
}
这两种方法都会输出当前月份。第一种方法返回一个YearMonth
对象,可以直接获取月份。第二种方法返回一个LocalDate
对象,需要调用getMonthValue()
方法来获取月份。