C 日期時間

2021-10-09 07:53:20 字數 2177 閱讀 5956

//獲取日期+時間

datetime.now.

tostring()

;// 2008-9-4 20:02:10

datetime.now.

tolocaltime()

.tostring()

;// 2008-9-4 20:12:12

//獲取日期

datetime.now.

tolongdatestring()

.tostring()

;// 2023年9月4日

datetime.now.

toshortdatestring()

.tostring()

;// 2008-9-4

datetime.now.

tostring

("yyyy-mm-dd");

// 2008-09-04

datetime.now.date.

tostring()

;// 2008-9-4 0:00:00

//獲取時間

datetime.now.

tolongtimestring()

.tostring()

;// 20:16:16

datetime.now.

toshorttimestring()

.tostring()

;// 20:16

datetime.now.

tostring

("hh:mm:ss");

// 08:05:57

datetime.now.timeofday.

tostring()

;// 20:33:50.7187500

//其他

datetime.

tofiletime()

.tostring()

;// 128650040212500000

datetime.now.

tofiletimeutc()

.tostring()

;// 128650040772968750

datetime.now.

tooadate()

.tostring()

;// 39695.8461709606

datetime.now.

touniversaltime()

.tostring()

;// 2008-9-4 12:19:14

datetime.now.year.

tostring()

; 獲取年份 // 2008

datetime.now.month.

tostring()

; 獲取月份 // 9

datetime.now.dayofweek.

tostring()

; 獲取星期 // thursday

datetime.now.dayofyear.

tostring()

; 獲取第幾天 // 248

datetime.now.hour.

tostring()

; 獲取小時 // 20

datetime.now.minute.

tostring()

; 獲取分鐘 // 31

datetime.now.second.

tostring()

; 獲取秒數 // 45

//n為乙個數,可以數整數,也可以事小數

dt.addyears

(n).

tostring()

;//時間加n年

dt.adddays

(n).

tostring()

;//加n天

dt.addhours

(n).

tostring()

;//加n小時

dt.addmonths

(n).

tostring()

;//加n個月

dt.addseconds

(n).

tostring()

;//加n秒

dt.addminutes

(n).

tostring()

;//加n分

C 日期 時間

c 標準庫沒有提供所謂的日期型別。c 繼承了 c 語言用於日期和時間操作的結構和函式。為了使用日期和時間相關的函式和結構,需要在 c 程式中引用 標頭檔案。有四個與時間相關的型別 clock t time t size t和tm。型別 clock t size t 和 time t 能夠把系統時間和...

C 日期 時間

c 標準庫沒有提供日期型別,c 繼承了c語言用於日期和時間操作的函式,所以在c 程式中需要引用標頭檔案。其中有四個與時間相關的型別 clock t time t size t tm,型別 clock t size t 和 time t 能夠把系統時間和日期表示為某種整數。而結構體型別tm則把日期和時...

C 日期 時間

c 標準庫沒有提供所謂的日期型別。c 繼承了 c 語言用於日期和時間操作的結構和函式。為了使用日期和時間相關的函式和結構,需要在 c 程式中引用 標頭檔案。有四個與時間相關的型別 clock t time t size t和tm。型別 clock t size t 和 time t 能夠把系統時間和...