다음을 통해 공유


CSize::operator !=

Checks for inequality between two sizes.

BOOL operator!=( 
   SIZE size  
) const throw( );

Remarks

Returns nonzero if the sizes are not equal, otherwise 0.

Example

CSize sz1(222, 222);
CSize sz2(111, 111);

ASSERT(sz1 != sz2);   

Requirements

Header: atltypes.h

See Also

Concepts

CSize Class

CSize Members

Hierarchy Chart

CSize::operator ==