CFileTime::operator <
Questo operatore confronta due oggetti CFileTime per determinare il minore.
bool operator<(
CFileTime ft
) const throw( );
Parametri
- ft
Oggetto CFileTime da confrontare.
Valore restituito
Restituisce true se il primo oggetto è minore (precedentemente nel tempo) che il secondo, false in caso contrario.
Esempio
// Test for one time less than another
// Declare the CFileType objects
CFileTime myFT1, myFT2;
// Obtain the first time value
myFT1 = CFileTime::GetCurrentTime();
// Pause for a moment...
Sleep(1000);
// Obtain the second time value
myFT2 = CFileTime::GetCurrentTime();
// Perform the comparison
if (myFT1 < myFT2)
_tprintf_s(_T("Time is going in the correct direction.\n"));
else
_tprintf_s(_T("Oh dear. Time is going backwards.\n"));
Requisiti
Header: atltime.h