Partilhar via


CTime::GetDayOfWeek

Retorna o dia da semana representado pelo CTime objeto.

int GetDayOfWeek( ) const throw( );

Valor de retorno

Retorna o dia da semana, com base no horário local; 1 = domingo, 2 = segunda-feira, 7 = Sábado.

Comentários

Essa função chama GetLocalTm, que usa interna estaticamente buffer alocado. Os dados nesse buffer são substituídos por causa das chamadas para outros CTime funções de membro.

Exemplo

// 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   

Requisitos

Cabeçalho: atltime.h

Consulte também

Referência

Classe CTime

Gráfico de hierarquia

Outros recursos

CTime membros