COleDateTimeSpan关系运算符
比较运算符。
bool operator ==(
const COleDateTimeSpan& dateSpan
) const throw( );
bool operator !=(
const COleDateTimeSpan& dateSpan
) const throw( );
bool operator <(
const COleDateTimeSpan& dateSpan
) const throw( );
bool operator >(
const COleDateTimeSpan& dateSpan
) const throw( );
bool operator <=(
const COleDateTimeSpan& dateSpan
) const throw( );
bool operator >=(
const COleDateTimeSpan& dateSpan
) const throw( );
参数
- dateSpan
要比较的 COleDateTimeSpan。
返回值
在条件为true,这些运算符比较两个日期/时间范围值并返回 true ;否则 false。
备注
备注
如果其中一个操作数无效,ATLASSERT将发生。
示例
COleDateTimeSpan spanOne(3, 12, 0, 0); // 3 days and 12 hours
COleDateTimeSpan spanTwo(spanOne); // 3 days and 12 hours
BOOL b;
b = spanOne == spanTwo; // TRUE
b = spanOne < spanTwo; // FALSE, same value
b = spanOne > spanTwo; // FALSE, same value
b = spanOne <= spanTwo; // TRUE, same value
b = spanOne >= spanTwo; // TRUE, same value
spanTwo.SetStatus(COleDateTimeSpan::invalid);
b = spanOne == spanTwo; // FALSE, different status
b = spanOne != spanTwo; // TRUE, different status
COleDateTimeSpan ts1(100.0); // one hundred days
COleDateTimeSpan ts2(110.0); // ten more days
ASSERT((ts1 != ts2) && (ts1 < ts2) && (ts1 <= ts2));
要求
Header: atlcomtime.h