關於時間的處理:localdate(格式為:2019-05-27)
方法名返回值
方法解釋
getyear()
int獲取當前日期的年份
getmonth()
month
獲取當前日期的月份物件
getmonthvalue()
int
獲取當前日期是第幾月
getdayofweek()
dayofweek
表示該物件表示的日期是星期幾
getdayofmonth()
int表示該物件表示的日期是這個月第幾天
getdayofyear()
int表示該物件表示的日期是今年第幾天
withyear(int year)
localdate
修改當前物件的年份
withmonth(int month)
localdate
修改當前物件的月份
withdayofmonth(int dayofmonth) localdate
localdate
修改當前物件在當月的日期
isleapyear()
boolean
是否是閏年
engthofmonth()
int
這個月有多少天
lengthofyear()
int
該物件表示的年份有多少天(365或者366)
plusyears(long yearstoadd)
localdate
當前物件增加指定的年份數
plusmonths(long monthstoadd)
localdate
當前物件增加指定的月份數
plusweeks(long weekstoadd)
localdate
當前物件增加指定的週數
plusdays(long daystoadd)
localdate
當前物件增加指定的天數
minusyears(long yearstosubtract)
localdate
當前物件減去指定的年數
minusmonths(long monthstosubtract)
localdate
當前物件減去注定的月數
minusweeks(long weekstosubtract)
localdate
當前物件減去指定的週數
minusdays(long daystosubtract)
localdate
當前物件減去指定的天數
compareto(chronolocaldate other)
int比較日期的大小,值為正則當前物件時間較晚
isbefore(chronolocaldate other)
boolean
比較當前物件日期是否在other物件日期之前
isafter(chronolocaldate other)
boolean
比較當前物件日期是否在other物件日期之後
isequal(chronolocaldate other)
boolean
比較兩個日期物件是否相等
自我記錄下LocalDate方法
getyear int 獲取當前日期的年份 getmonth month 獲取當前日期的月份物件 getmonthvalue int 獲取當前日期是第幾月 getdayofweek dayofweek 表示該物件表示的日期是星期幾 getdayofmonth int 表示該物件表示的日期是這個月第幾...
JDK8中LocalDate的方法
getyear int 獲取當前日期的年份 getmonth month 獲取當前日期的月份物件 getmonthvalue int 獲取當前日期是第幾月 getdayofweek dayofweek 表示該物件表示的日期是星期幾 getdayofmonth int 表示該物件表示的日期是這個月第幾...
paint類方法介紹
paint類介紹 paint即畫筆,在繪圖過程中起到了極其重要的作用,畫筆主要儲存了顏色,樣式等繪製資訊,指定了如何繪製文字和圖形,畫筆物件有很多設定方法,大體上可以分為兩類,一類與圖形繪製相關,一類與文字繪製相關。1.圖形繪製 setargb int a,int r,int g,int b 設定繪...