Rect.Equality(Rect, Rect) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
두 사각형이 정확히 같은지 비교합니다.
public:
static bool operator ==(System::Windows::Rect rect1, System::Windows::Rect rect2);
public static bool operator == (System.Windows.Rect rect1, System.Windows.Rect rect2);
static member ( = ) : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Operator == (rect1 As Rect, rect2 As Rect) As Boolean
매개 변수
- rect1
- Rect
비교할 첫 번째 사각형입니다.
- rect2
- Rect
비교할 두 번째 사각형입니다.
반환
사각형의 Location 및 Size 값이 서로 같으면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 예제에서는 사용 하는 방법의 Equality 경우 두 사각형이 정확히 같은지 확인 하는 연산자입니다.
private Boolean overloadedEqualityOperatorExample()
{
// Initialize new rectangle.
Rect myRectangle = new Rect();
// The Location property specifies the coordinates of the upper left-hand
// corner of the rectangle.
myRectangle.Location = new Point(10, 5);
// Set the Size property of the rectangle with a width of 200
// and a height of 50.
myRectangle.Size = new Size(200, 50);
// Create second rectangle to compare to the first.
Rect myRectangle2 = new Rect();
myRectangle2.Location = new Point(0, 0);
myRectangle2.Size = new Size(200, 50);
// Check if the two Rects are exactly equal using the overloaded equality operator.
// areEqual is false because although the size of each rectangle is the same,
// the locations are different.
bool areEqual = (myRectangle == myRectangle2);
// Returns false.
return areEqual;
}
Private Function overloadedEqualityOperatorExample() As Boolean
' Initialize new rectangle.
Dim myRectangle As New Rect()
' The Location property specifies the coordinates of the upper left-hand
' corner of the rectangle.
myRectangle.Location = New Point(10, 5)
' Set the Size property of the rectangle with a width of 200
' and a height of 50.
myRectangle.Size = New Size(200, 50)
' Create second rectangle to compare to the first.
Dim myRectangle2 As New Rect()
myRectangle2.Location = New Point(0, 0)
myRectangle2.Size = New Size(200, 50)
' Check if the two Rects are exactly equal using the overloaded equality operator.
' areEqual is false because although the size of each rectangle is the same,
' the locations are different.
Dim areEqual As Boolean = (myRectangle = myRectangle2)
' Returns false.
Return areEqual
End Function
설명
이 작업 개체 같은지 테스트합니다.
이 비교에서 두 인스턴스의 Double.NaN 것으로 간주 됩니다.
참고
사각형의 위치 및 크기에서 설명한 Double 값입니다. 때문에 Double 값에 연산을 수행 하는 경우 정밀도 떨어질 수, 논리적으로 동일한 두 값 간의 비교 실패할 수 있습니다.
이 연산자에 대 한 해당 메서드는 Rect.Equals(Rect, Rect)
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET