Point.Inequality(Point, Point) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
比較兩個 Point 結構是否相等。
public:
static bool operator !=(System::Windows::Point point1, System::Windows::Point point2);
public static bool operator != (System.Windows.Point point1, System.Windows.Point point2);
static member op_Inequality : System.Windows.Point * System.Windows.Point -> bool
Public Shared Operator != (point1 As Point, point2 As Point) As Boolean
參數
- point1
- Point
要比較的第一個點。
- point2
- Point
要比較的第二個點。
傳回
如果 point1
和 point2
具有不同的 X 或 Y 座標,則為 true
;如果 point1
和 point2
具有相同的 X 和 Y 座標,則為 false
。
範例
下列範例示範如何使用多載的 (!=) 運算子來檢查兩 Point 個結構是否不相等。
private Boolean overloadedInequalityOperatorExample()
{
Point point1 = new Point(20, 30);
Point point2 = new Point(45, 70);
// Check whether the two Points are not equal, using the overloaded
// inequality operator.
// areNotEqual is True.
Boolean areNotEqual = (point1 != point2);
return areNotEqual;
}
Private Function overloadedInequalityOperatorExample() As Boolean
Dim point1 As New Point(20, 30)
Dim point2 As New Point(45, 70)
' Check whether the two Points are not equal, using the overloaded
' inequality operator.
' areNotEqual is True.
Dim areNotEqual As Boolean = (point1 <> point2)
Return areNotEqual
End Function
備註
點和 X Y 座標會使用 Double 值來描述。 因為 Double 值在操作時可能會失去精確度,因此邏輯上相等的兩 Point 個值之間的比較可能會失敗。