Point::operator+ 方法 (gdiplustypes.h)

Point::operator+ 方法添加两个 Point 对象的 XY 数据成员。

语法

Point operator+(
  [in, ref] const Point & point
);

parameters

[in, ref] point

类型: const Point

Point 对象的引用,该对象的 XY 数据成员将添加到此 Point 对象的 XY 数据成员。

返回值

类型:

此方法返回 一个 Point 对象,该对象是两个 Point 对象的总和。

注解

此方法重载 Point 对象的加法运算符。 如果 A、B 和 C 是 Point 对象,则语句 C = A + B 等效于 C = A.operator+ (B)

示例

以下示例创建两个 Point 对象,然后添加两个 Point 对象,并将结果存储在第三个 Point 对象中。

Point point1(40, 10);
Point point2(20, 30);

// Point 3 now contains the coordinates (60, 40).
Point point3 = point1 + point2; 

要求

   
最低受支持的客户端 Windows XP、Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 gdiplustypes.h (包括 Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

另请参阅

Point

Point::Equals

Point::operator-

PointF