术语 | CTimeSpan::operator Comparison Operators |
释义 | CTimeSpan Comparison Operators BOOL operator ==( CTimeSpan timeSpan ) const; BOOL operator !=( CTimeSpan timeSpan ) const; BOOL operator <( CTimeSpan timeSpan ) const; BOOL operator >( CTimeSpan timeSpan ) const; BOOL operator <=( CTimeSpan timeSpan ) const; BOOL operator >=( CTimeSpan timeSpan ) const; 说明: 这些操作符比较两个相对时间值。如果测试条件为真,则返回非零值;否则返回0。 示例: // example for CTimeSpan comparison operatorsCTimeSpan ts1( 100 ); CTimeSpan ts2( 110 ); ATLASSERT( ( ts1 != ts2 ) && ( ts1 < ts2 ) && ( ts1 <= ts2 ) ); |
随便看 |
|
MFC类库中文详解手册包含4274条MFC类库参考词条,基本涵盖了Microsoft基本类库中的类、全局函数、全局变量和宏的内容,是计算机编程的有利工具。