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 对象。

返回值

在条件为true,这些运算符比较两倍绝对并返回 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);   

要求

Header: atltime.h

请参见

参考

CTime选件类

层次结构图