关于用String Calender类 计算闰年的Demo

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);
    }
}

上一篇:ECMAScript6 语法


下一篇:[JAVA教程] 2016年最新spring4框架搭建视频教程 【尚学堂】