首先让我说,我对编程和这个网站都是新手。这是我第一次来这里,这是我的第二个编程项目!:)
我在编译时在底部遇到一些错误,在 - x2 上出现红色框,并且可能也会在 - y2 上。错误是意外类型。
基本上做一个项目来获得点的差异,这还没有完成,但我不知道如何解决编译错误。起初,我尝试添加用于存储 x2 和 y2 的字段,但这确实解决了这个错误,只是给了我另一个(我删除了,因为我不打算添加更多字段)。最后我觉得我需要return math.sqrt(double x3) + math.sqrt(double y3)
任何建议表示赞赏,我正在使用 bluejay。我相信这对你们中的一些人来说可能看起来很容易大师记住我是新手!:)
public class Point {
//fields holding info for x,y
private double x;
private double y;
//default constructor, set to 0.0
public Point() {
x = 0.0;
y = 0.0;
}
//constructor that user can set field values
public Point (double x, double y) {
this.x = x;
this.y = y;
}
//This is optional. return value of x
public double getx () {
return x;
}
//This is optional. return value of y
public double gety () {
return y;
}
//take new parameter find distance between field parameter and new parameter
public double distanceTo (double x2, double y2) {
x - x2 = x3;
y - y2 = y3;
}
}