Calendar的add 方法介紹

2021-06-20 10:40:35 字數 687 閱讀 9268

public static date addyears(date date, int amount)  

public static date addmonths(date date, int amount)  

public static date addweeks(date date, int amount)  

public static date adddays(date date, int amount)  

public static date addhours(date date, int amount)  

public static date addminutes(date date, int amount)  

public static date addseconds(date date, int amount)  

public static date addmilliseconds(date date, int amount)  

private static date add(date date, int calendarfield, int amount)  

else  

}  

如果calendarfield是1則代表的是對年份操作,2是對月份操作,3是對星期操作,5是對日期操作,11是對小時操作,12是對分鐘操作,13是對秒操作,14是對毫秒操作。

記一次Calendar的set與add

calendar是日期工具類,可以用來對日期做操作。比如 calendar c calendar.getinstance 這段 的作用是將時間往前推乙個小時,按照24小時制,所以結果是比當前時間小乙個小時 c.add calendar.hour of day,1 這段 的作用是將二十四小時制的小時位...

List的add方法剖析

class1 using system using system.collections.generic using system.linq using system.text using system.threading.tasks namespace new乙個例項 using system u...

add 方法和Put 方法的差別

add 和put 方法都是集合框架中的新增元素的方法。但是put 方法應用於map集合中,add 方法應用於collection集合中。二者的主要區別是 返回值型別不一樣。add 放回布林 boolean 型別。因為像set集合中不允許新增重複的元素。當hashset呼叫add 方法時,如果返回fa...