Calendar

来源:互联网 发布:vscode mactype 贴吧 编辑:程序博客网 时间:2024/05/15 04:15

1.日历类,封装了所有的日历字段值,通过统一的方法根据传入不同的日历字段可以获取值。

2.如何得到一个日历对象呢?

    Calendar rightNow = Calendar.getInstance();    本质返回的是子类对象
import java.util.Calendar;/* * Calendar:它为特定瞬间与一组诸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 等 日历字段之间的转换提供了一些方法, * 并为操作日历字段(例如获得下星期的日期)提供了一些方法。 *  * public int get(int field):返回给定日历字段的值。 * 日历类中的每个日历字段都是静态的成员变量,并且是int类型。 */public class CalendarDemo {    public static void main(String[] args) {        // 其日历字段已由当前日期和时间初始化:        Calendar rightNow = Calendar.getInstance(); // 子类对象        // 获取年        int year = rightNow.get(Calendar.YEAR);        // 获取月        int month = rightNow.get(Calendar.MONTH);        // 获取日        int date = rightNow.get(Calendar.DATE);        System.out.println(year + "年" + (month + 1) + "月" + date + "日");    }}/* * abstract class Person { public static Person getPerson() { return new * Student(); } } *  * class Student extends Person { *  * } */

3.成员方法

    A:根据日历字段得到对应的值    B:根据日历字段和一个正负数确定是添加还是减去对应日历字段的值    C:设置日历对象的年月日
import java.util.Calendar;/* * public void add(int field,int amount):根据给定的日历字段和对应的时间,来对当前的日历进行操作。 * public final void set(int year,int month,int date):设置当前日历的年月日 */public class CalendarDemo {    public static void main(String[] args) {        // 获取当前的日历时间        Calendar c = Calendar.getInstance();        // 获取年        int year = c.get(Calendar.YEAR);        // 获取月        int month = c.get(Calendar.MONTH);        // 获取日        int date = c.get(Calendar.DATE);        System.out.println(year + "年" + (month + 1) + "月" + date + "日");        // // 三年前的今天        // c.add(Calendar.YEAR, -3);        // // 获取年        // year = c.get(Calendar.YEAR);        // // 获取月        // month = c.get(Calendar.MONTH);        // // 获取日        // date = c.get(Calendar.DATE);        // System.out.println(year + "年" + (month + 1) + "月" + date + "日");        // 5年后的10天前        c.add(Calendar.YEAR, 5);        c.add(Calendar.DATE, -10);        // 获取年        year = c.get(Calendar.YEAR);        // 获取月        month = c.get(Calendar.MONTH);        // 获取日        date = c.get(Calendar.DATE);        System.out.println(year + "年" + (month + 1) + "月" + date + "日");        System.out.println("--------------");        c.set(2011, 11, 11);        // 获取年        year = c.get(Calendar.YEAR);        // 获取月        month = c.get(Calendar.MONTH);        // 获取日        date = c.get(Calendar.DATE);        System.out.println(year + "年" + (month + 1) + "月" + date + "日");    }}

4.案例:

计算任意一年的2月份有多少天?

import java.util.Calendar;import java.util.Scanner;/* * 获取任意一年的二月有多少天 *  * 分析: *      A:键盘录入任意的年份 *      B:设置日历对象的年月日 *          年就是A输入的数据 *          月是2 *          日是1 *      C:把时间往前推一天,就是2月的最后一天 *      D:获取这一天输出即可 */public class CalendarTest {    public static void main(String[] args) {        // 键盘录入任意的年份        Scanner sc = new Scanner(System.in);        System.out.println("请输入年份:");        int year = sc.nextInt();        // 设置日历对象的年月日        Calendar c = Calendar.getInstance();        c.set(year, 2, 1); // 其实是这一年的3月1日        // 把时间往前推一天,就是2月的最后一天        c.add(Calendar.DATE, -1);        // 获取这一天输出即可        System.out.println(c.get(Calendar.DATE));    }}
0 0
原创粉丝点击