CTimeSpan::operator +, -

Aggiunta e sottrae gli oggetti CTimeSpan.

CTimeSpan operator +(
   CTimeSpan span 
) const throw( );
CTimeSpan operator -(
   CTimeSpan span 
) const throw( );

Parametri

  • span
    Il valore da aggiungere all'oggetto CTimeSpan.

Valore restituito

Un oggetto CTimeSpan che rappresenta il risultato dell'operazione.

Note

Questi due operatori consentono di aggiungere e ridurre gli oggetti CTimeSpan da loro.

Esempio

CTimeSpan ts1(3, 1, 5, 12); // 3 days, 1 hour, 5 min, and 12 sec
CTimeSpan ts2(100); // 100 seconds
CTimeSpan ts3 = ts1 + ts2;
ATLASSERT(ts3.GetSeconds() == 52); // 6 mins, 52 secs   

Requisiti

Header: atltime.h

Vedere anche

Riferimenti

Classe di CTimeSpan

Grafico della gerarchia