CTimeSpan::operator +, -

增加和减少 CTimeSpan 对象。

CTimeSpan operator +(
   CTimeSpan span 
) const throw( );
CTimeSpan operator -(
   CTimeSpan span 
) const throw( );

参数

  • span
    将的值更改为 CTimeSpan 对象。

返回值

表示操作的结果 CTimeSpan 对象。

备注

这两个运算符可以来回进行增加和减少 CTimeSpan 对象。

示例

CTimeSpan ts1(3, 1, 5, 12); // 3 days, 1 hour, 5 min, and 12 sec
CTimeSpan ts2(100); // 100 seconds
CTimeSpan ts3 = ts1 + ts2;
ATLASSERT(ts3.GetSeconds() == 52); // 6 mins, 52 secs   

要求

Header: atltime.h

请参见

参考

CTimeSpan选件类

层次结构图