CPoint::operator !=
2 つのポイントが異なっているかどうかを調べます。
BOOL operator!=(
POINT point
) const throw( );
パラメーター
- point
CPoint の [ポイント] の構造やオブジェクトが含まれています。
戻り値
ポイントがではない場合、; それ以外の場合は 0。
使用例
CPoint ptFirst(256, 128);
CPoint ptTest(111, 333);
ASSERT(ptFirst != ptTest);
// works with POINTs, too
POINT pt;
pt.x = 333;
pt.y = 111;
ASSERT(ptTest != pt);
// note that pt != ptTest isn't correct!
必要条件
ヘッダー: atltypes.h