CTime 比較演算子
比較演算子です。
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( );
パラメーター
- time
比較する CTime オブジェクト。
戻り値
これらの演算子は条件に当てはまる場合は、2 種類の絶対回、および戻り値の true を比較します; それ false。
使用例
CTime t1 = CTime::GetCurrentTime();
CTime t2 = t1 + CTimeSpan(0, 1, 0, 0); // 1 hour later
ATLASSERT(t1 != t2);
ATLASSERT(t1 < t2);
ATLASSERT(t1 <= t2);
必要条件
ヘッダー : atltime.h