使用Point类的一个例子?

时间:2013-09-23 02:53:51

标签: java point

我正在尝试使用Point(double x, double y), getX(), getY()创建一个点并使用toString()返回它。我无法找到如何在任何地方执行此操作的示例。

public class Point {

    private final double x;
    private final double y;

    public Point(double x, double y) {
        this.x = x;
        this.y = y;
    }


    public double getX() {
        return x;
    }

    public double getY() {
        return y;
    }


    @Override
    public String toString() {
        return ("(" + x + "," + y + ")"); 
    }
}

2 个答案:

答案 0 :(得分:4)

您可能希望这样做:

public Point(double x, double y) {
    this.x = x;
    this.y = y;
}

则...

System.out.println(new Point(5.0, 5.0).toString());

我不知道为什么你在构造函数中将this.x和this.y值设置为1。您应该将它们设置为提供的x和y值。

您也不需要toString()方法中的外部圆括号。 return "(" + x + "," + y + ")";可以正常使用。

答案 1 :(得分:2)

我认为你在寻找:

public class Point {
private double x;
private double y;

public Point(double x, double y){
    this.x=x;
    this.y=y;
}public String toString(){
    return "("+ this.x+","+this.y+")";
}
public static void main(String[] args){
    Point point= new Point(3,2);
            System.out.println(point.tostring());
    }
}

让getX()getY()只需要创建它们。