Point::operator- 메서드(gdiplustypes.h)
Point::operator- 메서드는 두 Point 개체의 X 및 Y 데이터 멤버를 뺍니다.
구문
Point operator-(
[in, ref] const Point & point
);
매개 변수
[in, ref] point
형식: const Point
이 Point 개체의 X 및 Y 데이터 멤버에서 X 및 Y 데이터 멤버를 빼는 Point 개체에 대한 참조입니다.
반환 값
형식: 점
이 메서드는 두 Point 개체의 차이인 Point 개체를 반환합니다.
설명
이 메서드는 Point 개체에 대한 빼기 연산자를 오버로드합니다. A, B 및 C가 Point 개체인 경우 C = A - B 문은 C = A.operator-(B)와 동일합니다.
예제
다음 예제에서는 두 개의 Point 개체를 만든 다음 첫 번째 Point 개체에서 두 번째 Point 개체를 빼고 결과를 세 번째 Point 개체에 저장합니다.
Point point1(40, 10);
Point point2(-20, -30);
// Point3 now contains the coordinates (60, 40).
Point point3 = point1 - point2;
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows XP, Windows 2000 Professional [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows 2000 Server[데스크톱 앱만] |
대상 플랫폼 | Windows |
헤더 | gdiplustypes.h(Gdiplus.h 포함) |
라이브러리 | Gdiplus.lib |
DLL | Gdiplus.dll |