CTime::GetLocalTm
取得包含時間的分解的 struct tm 包含在這個 CTime 物件。
struct tm* GetLocalTm(
struct tm* ptm
) const;
參數
- ptm
要接收時間資料的緩衝區中的點。 如果這個指標是 NULL,便會擲回例外狀況。
傳回值
將指標填滿置於標記為包含檔案 TIME.H. 定義的 struct tm 。 提供結構配置參閱 gmtime,_gmtime32 _gmtime64 。
備註
GetLocalTm 傳回本地時間。
ptm 不可以是 NULL。 如果您想要將還原成舊的行為, ptm 可能是表示的 NULL 內部,應該使用靜態配置的緩衝區,則未定義 _SECURE_ATL。
範例
CTime t(1999, 3, 19, 22, 15, 0); // 10:15PM March 19, 1999
tm osTime; // A structure containing time elements.
t.GetLocalTm(&osTime);
ATLASSERT(osTime.tm_mon == 2); // Note zero-based month!
需求
Header: atltime.h