Point.Inequality(Point, Point) 演算子

定義

2 つの 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

2 番目に比較するポイント。

戻り値

Boolean

point1point2X 座標または Y 座標が異なる場合は truepoint1point2X 座標と Y 座標が同じ場合は false

次の例では、オーバーロードされた (!=) 演算子を使用して、2 つの 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

注釈

ポイント XY 座標は、値を使用して Double 記述されます。 値を操作すると精度が失われる可能性があるため Double 、論理的に等しい 2 つの Point 値の比較が失敗する可能性があります。

適用対象