package cn.zmh.zuoye;
import java.util.Calendar;
public class StringRun {
public static void main(String[] args) {
fun1();
}
/*
* 闰年计算
* 2000 3000
* 高级的算法: 日历设置到指定年份的3月1日,add向前偏移1天,获取天数,29闰年
*/
public static void fun1(){
Calendar c = Calendar.getInstance();
//1将日历设置成2019年3月1日
c.set(2019,2,1);
//2 将日历往前偏移一天
c.add(Calendar.DAY_OF_MONTH,-1);
//3 get 获取天数
int day = c.get(Calendar.DAY_OF_MONTH);
System.out.println(day);
}
}
原文地址:https://www.cnblogs.com/zhangmenghui/p/10562242.html
时间: 2024-10-09 02:35:59