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 논리적으로 동일한 값을 실패할 수 있습니다.