无法弄清楚为什么我的三角类上的x和y坐标会被切换

时间:2013-02-20 02:11:03

标签: java debugging implementation

我不知道我的代码是否做错了,我测试了我的三角形类,由于某种原因,我的三角构造函数的cornerC用y切换x。

public class TriangleIsosceles {
    private Point cornerA;
    private Point cornerB;
    private Point cornerC;
    private int x1;
    private int y1;
    private int x2;
    private int y2;
    private int x3;
    private int y3;

    public TriangleIsosceles(){
        cornerA = new Point(x1,y1);
        cornerB = new Point(x2,y2);
        cornerC = new Point(x3,y3);
    }

    public TriangleIsosceles(int X1,int Y1,int X2,int Y2,int X3,int Y3){
        x1 = X1;
        y1 = Y1;
        x2 = X2;
        y2 = Y2;
        x3 = X3;
        y3 = Y3;

        cornerA = new Point(X1,Y1);
        cornerB = new Point(X2,Y2);
        cornerC = new Point(X3,Y3);
    }

    public boolean isIsosceles(){
        double lengthAB = Math.sqrt(Math.pow(x1-x2,2) + Math.pow(y1-y2,2));
        double lengthBC = Math.sqrt(Math.pow(x2-x3,2) + Math.pow(y2-y3,2));
        double lengthCA = Math.sqrt(Math.pow(x3-x1,2) + Math.pow(y3-y1,2));

        boolean isIsosceles = false;
        if(lengthAB == lengthBC || lengthBC == lengthCA || lengthCA == lengthAB){
            isIsosceles = true;
        }
        System.out.println(lengthAB);
        System.out.println(lengthBC);
        System.out.println(lengthCA);
        return isIsosceles;
    }
}

在我的测试课上,我试过了
TriangleIsosceles t2 = new TriangleIsosceles(0, 0, 0, 10, 0, 5); System.out.println(t2.isIsosceles());
输出
10.0
5.0
5.0

但是当我尝试

TriangleIsosceles t2 = new TriangleIsosceles(0, 0, 0, 10, 5, 0);
        System.out.println(t2.isIsosceles());


输出
10.0
10.295630140987
5.0990195135927845

1 个答案:

答案 0 :(得分:2)

您的第一次测试实际上并未创建三角形。 3点(0,0),(0,10)和(0,5)。它们都在同一平面上有X坐标 - 这是一条直线。因此,您的三角形类不会验证它是否为有效三角形,因此您以isIsoceles返回true的行结束。

你的第二个三角形实际上不是等腰。这些点是(0,0),(0,10)和(5,0),它们没有两个相等的边。