基本介紹
- 中文名:UTCtoLocal
- 返回值:對象在本地檔案時間格式
- 原型:調用此方法將根據協調世界
- 示例:c++程式
函式原型,返回值,示例,參考,
函式原型
CFileTime UTCToLocal( ) const throw( );
調用此方法將根據協調世界時(utc)的時間(UTC)轉換為本地檔案時。
返回值
返回包含時間的 CFileTime 對象在本地檔案時間格式。
示例
c++程式:
// Convert a UTC time to local file time format
CFileTime myUTC_FT, myL_FT;
// Get system time (in UTC format)
myUTC_FT = CFileTime::GetCurrentTime();
// Convert to local file time
myL_FT = myUTC_FT.UTCToLocal();
參考
CFileTime選件類
CFileTime::LocalToUTC