mfc
提供了兩個日期和時間類
ctime
和ctimespan,
分別代表相對時間和絕對時間。
ctime
是基於格林威治平均時間(
gmt)的,本地的時間由環境變數
tz決定。
ctimespan
代表了時間間隔。
ctime
類由下列成員函式:
ctime()
建立乙個
ctime
物件。getcurrenttime()
由當前時間建立乙個
ctime
物件。gettime()
由ctime
物件返回乙個
time_t
變數。getyear()
獲取ctime
物件代表的年。
getmonth
()獲取
ctime
物件代表的月。
getday()
獲取ctime
物件代表的日期。
gethour()
獲取ctime
物件代表的小時。
getminute()
獲取ctime
物件代表的分。
getsecond()
獲取ctime
物件代表的秒。
getdayofweek()
獲取ctime
物件代表的週日,
1代表週日,
2代表周
-等等。
format()
將字串轉換成乙個基於本地時區的格式字串。
formatgmt()
將字串轉換成乙個基於
utc(世界時)的格式字串。
operator =
賦予新的時間。
operator +
增加ctime
和ctimespan
物件。operator –
減小ctime
和ctimespan
物件。operator += ctime
物件加乙個
ctimespan
物件。operator -= ctime
物件減乙個
ctimespan
物件。operator ==
比較兩個絕對時間是否相等。
operator !=
比較兩個絕對時間是否不相等。
operator <
比較兩個絕對時間,是否前乙個大於後乙個。
operator >
比較兩個絕對時間,是否前乙個小於後乙個。
operator >=
比較兩個絕對時間,是否前乙個大於等於後乙個。
operator <=
比較兩個絕對時間,是否前乙個小於等於後乙個。
vc mfc 關於視窗 控制代碼 函式的總結
第一篇 getactivewindow 只是獲取當前程式中 嚴格地說是執行緒中 被啟用的視窗 hwnd hwnd getactivewindow 注意 如果是在多執行緒中某個子執行緒函式內部掉該函式,則返回null,建議在主線程中呼叫 即 如果某個函式有子執行緒呼叫的,則該函式內部使用getacti...
如何學好VC MFC
先看流程圖 補充說明 1 學習需要天賦,一般而言理科思維的人容易學vc.2 用vc 需要什麼就做什麼 的含義是 學以致用.3 參考書,越基礎越好.深入淺出mfc vc 技術內幕 是好書,可是不夠基礎.4 csdn高階搜尋的位址是 http search.csdn.net advsch.asp 5 推...
mysql日期函式彙總 mysql日期函式彙總
一 當前時間獲取 1.now 獲得當前日期 時間 2.sysdate 獲得當前日期 時間 3.current timestamp,current timestamp 獲得當前時間戳 二 日期轉換函式 時間轉換函式 1.date format date,format time format time,...