CTime Comparison Operators
Operatori di confronto.
bool operator ==(
CTime time
) const throw( );
bool operator !=(
CTime time
) const throw( );
bool operator <(
CTime time
) const throw( );
bool operator >(
CTime time
) const throw( );
bool operator <=(
CTime time
) const throw( );
bool operator >=(
CTime time
) const throw( );
Parametri
- time
Oggetto CTime da confrontare.
Valore restituito
Questi operatori confrontare due volte assolute e true di restituire se la condizione è true, in caso contrario false.
Esempio
CTime t1 = CTime::GetCurrentTime();
CTime t2 = t1 + CTimeSpan(0, 1, 0, 0); // 1 hour later
ATLASSERT(t1 != t2);
ATLASSERT(t1 < t2);
ATLASSERT(t1 <= t2);
Requisiti
Header: atltime.h