共计 1019 个字符,预计需要花费 3 分钟才能阅读完成。
要使用 Java 求任意两点之间的距离,可以使用以下步骤:
- 创建一个名为
Point
的类,该类表示一个点。该类应该包含x
和y
两个属性,并提供相应的 getter 和 setter 方法。
public class Point {private double x;
private double y;
public Point(double x, double y) {this.x = x;
this.y = y;
}
public double getX() {return x;
}
public void setX(double x) {this.x = x;
}
public double getY() {return y;
}
public void setY(double y) {this.y = y;
}
}
- 创建一个名为
DistanceCalculator
的类,该类包含一个静态方法calculateDistance
,用于计算两点之间的距离。该方法接受两个Point
对象作为参数,并返回一个double
类型的距离值。
public class DistanceCalculator {public static double calculateDistance(Point point1, Point point2) {double xDiff = point2.getX() - point1.getX();
double yDiff = point2.getY() - point1.getY();
return Math.sqrt(xDiff * xDiff + yDiff * yDiff);
}
}
- 在主程序中,创建两个
Point
对象,然后调用DistanceCalculator
的静态方法来计算它们之间的距离。
public class Main {public static void main(String[] args) {Point point1 = new Point(1, 2);
Point point2 = new Point(3, 4);
double distance = DistanceCalculator.calculateDistance(point1, point2);
System.out.println("Distance between point1 and point2: " + distance);
}
}
上述代码将输出 "Distance between point1 and point2: 2.8284271247461903",表示两点之间的距离为 2.8284271247461903。
丸趣 TV 网 – 提供最优质的资源集合!
正文完