Opérateurs de comparaison de CTime
Opérateurs de comparaison.
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( );
Paramètres
- time
Objet CTime à comparer.
Valeur de retour
Ces opérateurs comparent deux fois absolues et true de retour si la condition est remplie ; sinon false.
Exemple
CTime t1 = CTime::GetCurrentTime();
CTime t2 = t1 + CTimeSpan(0, 1, 0, 0); // 1 hour later
ATLASSERT(t1 != t2);
ATLASSERT(t1 < t2);
ATLASSERT(t1 <= t2);
Configuration requise
Header: atltime.h