CTimeSpan::operator +=, -=
更新 : 2007 年 11 月
CTimeSpan オブジェクトを加減算し CTimeSpan オブジェクトに代入します。
CTimeSpan& operator +=(
CTimeSpan span
) throw( );
CTimeSpan& operator -=(
CTimeSpan span
) throw( );
パラメータ
- span
CTimeSpan オブジェクトに追加する値。
戻り値
更新された CTimeSpan オブジェクト。
解説
これらの演算子は、CTimeSpan オブジェクトを加減算し CTimeSpan オブジェクトに代入します。
使用例
CTimeSpan ts1(10); // 10 seconds
CTimeSpan ts2(100); // 100 seconds
ts2 -= ts1;
ATLASSERT(ts2.GetTotalSeconds() == 90);
必要条件
ヘッダー : atltime.h