在Java中,可以使用java.time.YearMonth
类来获取当月的天数。
import java.time.YearMonth;
public class Main {
public static void main(String[] args) {
YearMonth yearMonth = YearMonth.now();
int daysInMonth = yearMonth.lengthOfMonth();
System.out.println("当前月份的天数:" + daysInMonth);
}
}
以上代码中,首先创建了一个YearMonth
对象表示当前月份,然后使用lengthOfMonth()
方法获取当月的天数。最后打印出当月的天数。