Freigeben über


CTimeSpan::operator =

constCTimeSpan&operator=(constCTimeSpan&timeSpanSrc);

Remarks

The overloaded assignment operator copies the source CTimeSpantimeSpanSrc object into this CTimeSpan object.

Example

// example for CTimeSpan::operator =
CTimeSpan ts1;
CTimeSpan ts2( 3, 1, 5, 12 ); // 3 days, 1 hour, 5 min, and 12 sec
ts1 = ts2;
ASSERT( ts1 == ts2 );

CTimespan OverviewClass MembersHierarchy Chart

See Also   CTimeSpan::CTimeSpan