CTime::GetDayOfWeek
返回 CTime 对象表示的周日期。
int GetDayOfWeek( ) const throw( );
返回值
返回基于本地时间周;1 = sunday,2 = mon,为7 =星期六。
备注
此函数调用 GetLocalTm,使用内部静态分配的缓冲区。 此缓冲区中的数据复盖由于调用其他 CTime 成员函数。
示例
// Print out the day of the week using localized day name
UINT DayOfWeek[] = {
LOCALE_SDAYNAME7, // Sunday
LOCALE_SDAYNAME1,
LOCALE_SDAYNAME2,
LOCALE_SDAYNAME3,
LOCALE_SDAYNAME4,
LOCALE_SDAYNAME5,
LOCALE_SDAYNAME6 // Saturday
};
TCHAR strWeekday[256];
CTime time(CTime::GetCurrentTime()); // Initialize CTime with current time
::GetLocaleInfo(LOCALE_USER_DEFAULT, // Get string for day of the week from system
DayOfWeek[time.GetDayOfWeek()-1], // Get day of week from CTime
strWeekday, sizeof(strWeekday) / sizeof(strWeekday[0]));
ATLTRACE(_T("%s\n"), strWeekday); // Print out day of the week
要求
Header: atltime.h