Java: calculating area of a triangle

最后都变了- 提交于 2019-12-01 06:28:56
Adam Matan

According to Wikipedia, you formula is correct. The article contains lots of useful and clear data.
According to the java.awt.point documentation, you should use the getX() and getY() methods, which return the coordinate value of a point.

That is,

Should be expressed as:

Math.abs((a.getX()-c.getX())*(b.getY()-a.getY())-          (a.getX()-b.getX())*(c.getY()-a.getY()))*0.5; 

It is probably not such a good practice to use point.x, because you shouldn't access an object's variable if you have a getter method that does that. This is the one aspect of separation between interface and implementation: the data point.x might be stored in many forms, not just int; The interface method assures that you'll get an int every time you use it.

Fakrudeen

compiler is telling you the exact right thing.

Math.abs((a-c)*(b-a)-(a-b)*(c-a) 

you forgot .x in a.x .y in b.y etc. that is (a.x - c.x)* ...

Update: I didn't notice that OP had linked to a formula, that's why I looked up this one and coded it. You should use the other formula as this one involves more calculations (including 4 calls to sqrt, I think that would be heavy).


Using Heron's formula

double distance(Point a, Point b) {   double dx = a.x - b.x;    double dy = a.y - b.y;   return Math.sqrt(dx * dx + dy * dy); } double getArea() {   double ab = distance(a, b);   double bc = distance(c, b);   double ca = distance(a, c);   double s = (ab + bc + ca) / 2;   return Math.sqrt(s * (s - ab) * (s - bc) * (s - ca)) } 

As the linked formula says, don't calculate with the points but with their x- and y-values. I'll leave it to you (it's homework!) to do that in java.

And don't forget to divide by 2.

Use a.x - c.x etc.

Just read the Javadoc: http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Point.html

The underlying problem: In Java, operators like '+' and '-' are only allowed for primitive types (like byte, int, long) but not for objects (in general) and arrays.

Other languages allow for operator overloading, so in c++ you could define a '+' operation for Point objects and there your initial idea would compile and run. But that is not possible in Java.

The only exceptions are String (it's allowed to 'add' String objects) and the primitive wrappers like Integer and Double in Java 1.5+ (autoboxing converts them back to primitives)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!