我是靠谱客的博主 犹豫冰棍,最近开发中收集的这篇文章主要介绍Calendar set时间时,天数加1,月份的改变,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Calendar   set方法:

先看源码:

/**
 * Sets the values for the calendar fields <code>YEAR</code>,
 * <code>MONTH</code>, and <code>DAY_OF_MONTH</code>.
 * Previous values of other calendar fields are retained.  If this is not desired,
 * call {@link #clear()} first.
 *
 * @param year the value used to set the <code>YEAR</code> calendar field.
 * @param month the value used to set the <code>MONTH</code> calendar field.
 * Month value is 0-based. e.g., 0 for January.
 * @param date the value used to set the <code>DAY_OF_MONTH</code> calendar field.
 * @see #set(int,int)
 * @see #set(int,int,int,int,int)
 * @see #set(int,int,int,int,int,int)
 */
public final void set(int year, int month, int date)
{
    set(YEAR, year);
    set(MONTH, month);
    set(DATE, date);
}

问题来了,当调用set时(例如2016-08-31),date加1,month会不会改变。

先测试一下and方法:

Calendar cal = Calendar.getInstance();
//设置时间2016-08-31
cal.set(2016,Calendar.AUGUST,31);

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

System.out.println(sdf.format(cal.getTime()));
//add 天数加1
cal.add(Calendar.DAY_OF_MONTH, 1);
System.out.println(sdf.format(cal.getTime()));
//set 设置天数
cal.set(Calendar.DAY_OF_MONTH, 1);
System.out.println(sdf.format(cal.getTime()));
输出结果如下:


再测试一下date+1:

Calendar cal = Calendar.getInstance();
//设置时间2016-08-31
cal.set(2016,Calendar.AUGUST,31);

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

System.out.println(sdf.format(cal.getTime()));

Calendar cal2 = Calendar.getInstance();

cal2.set(cal.get(Calendar.YEAR),cal.get(Calendar.MONTH),cal.get(Calendar.DAY_OF_MONTH)+1);
System.out.println(sdf.format(cal2.getTime()));

cal2.set(2016,Calendar.AUGUST,360);
System.out.println(sdf.format(cal2.getTime()));
测试结果如下:


最后

以上就是犹豫冰棍为你收集整理的Calendar set时间时,天数加1,月份的改变的全部内容,希望文章能够帮你解决Calendar set时间时,天数加1,月份的改变所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部