- java.lang.Object
-
- java.awt.geom.Point2D
-
- java.awt.geom.Point2D.Double
-
- 实现的所有接口
-
Serializable
,Cloneable
- Enclosing class:
- Point2D
public static class Point2D.Double extends Point2D implements Serializable
Double
类定义了double
精度中指定的点。- 从以下版本开始:
- 1.2
- 另请参见:
- Serialized Form
-
-
嵌套类汇总
-
嵌套类/接口声明在类 java.awt.geom.Point2D
Point2D.Double, Point2D.Float
-
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 double
getX()
以double
精度返回此Point2D
的X坐标。double
getY()
以double
精度返回此Point2D
的Y坐标。void
setLocation(double x, double y)
将此Point2D
的位置设置为指定的double
坐标。String
toString()
返回String
,表示此Point2D
的值。-
声明方法的类 java.awt.geom.Point2D
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, hashCode, setLocation
-
-
-
-
方法详细信息
-
getX
public double getX()
以double
精度返回此Point2D
的X坐标。
-
getY
public double getY()
以double
精度返回此Point2D
的Y坐标。
-
setLocation
public void setLocation(double x, double y)
将此Point2D
的位置设置为指定的double
坐标。- Specified by:
-
setLocation
类Point2D
- 参数
-
x
- 此Point2D
的新X坐标 -
y
- 此Point2D
的新Y坐标 - 从以下版本开始:
- 1.2
-
-