作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个家庭作业问题。我在尝试使用 getX() 和 getY() 创建 xPoints 和 yPoints 时遇到了很大的时间,请帮忙。
package shapes;
import java.awt.Color;
import java.awt.Graphics;
public class Triangle extends Rectangle {
//private int[] xPoints = {50, 100, 150};
//private int[] yPoints = {200, 100, 200};
private int[] xPoints = {(getX()/2), getX(), (getX()+(getX()/2))};
private int[] yPoints = {(getY()+getY()), getY(),(getY()+getY())};
public Triangle(int x, int y, int w, int h, Color lineColor, Color fillColor, boolean fill) {
super(x, y, w, h, lineColor, fillColor, fill);
}
public void draw(Graphics g) {
// Be nice. Save the state of the object before changing it.
Color oldColor = g.getColor();
if (isFill()) {
g.setColor(getFillColor());
g.fillPolygon(xPoints, yPoints, 3);
}
g.setColor(getLineColor());
g.drawPolygon(xPoints, yPoints, 3);
//g.drawOval(getX(), getY(), getWidth(), getHeight());
// Set the state back when done.
g.setColor(oldColor);
}
public int getArea() {
//return area;
return getWidth()*getHeight();
}
/**
* Returns a String representing this object.
*/
public String toString() {
//return "Triangle: \n\tx = " + getX() + "\n\ty = " + getY() +
//"\n\tw = " + getWidth() + "\n\th = " + getHeight();
return "Triangle";
}
}
//这是 SHAPE.JAVA 文件...
package shapes;
import java.awt.Color;
import java.awt.Graphics;
public abstract class Shape {
private int x, y;//,w,h;
private Color lineColor;
public Shape(int x, int y, Color lineColor) {
this.x = x;
this.y = y;
this.lineColor = lineColor;
}
public abstract void draw(Graphics g);
public abstract boolean containsLocation(int x, int y);
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public Color getLineColor() {
return lineColor;
}
public void setLineColor(Color lineColor) {
this.lineColor = lineColor;
}
}
最佳答案
首先,让我们考虑一下您在开场白中想要做什么。
public class Triangle extends Rectangle {
最后我检查了一下,三角形不是矩形的一种。也许你应该将其修改为类似的内容
public class Triangle extends Shape {
或者更合适的东西。查看 Shapes 类以找到准确的形状。
现在,让我们考虑一下您在类里面做了什么。
private int[] xPoints = {(getX()/2), getX(), (getX()+(getX()/2))};
private int[] yPoints = {(getY()+getY()), getY(),(getY()+getY())};
您确定需要在这里定义这些吗?我敢打赌 Shape
类已经有 xPoints 和 yPoints 的数组。在那里寻找灵感。
此外,如果 Shape 确实有 xPoints 和 yPoints,并且他们试图使用它们,他们将无法使用它们!因为您正在定义 Triangle.xPoints
,Shape.xPoints
将获得“阴影”...这意味着 Shape
中的 xPoints 将指向它自己的xPoints
,不是您定义的,导致非常快速的 NullPointerException。
现在,使用矩形,可以轻松将其定义为 X,Y + W,H。它看起来像这样:
X,Y X+W,Y
+---------+
| |
| |
+---------+
X,Y+H X+W,Y+H
现在你要如何表示你的三角形呢?看来您需要考虑一下如何表示您的三角形。也许 Shape 类中的一些信息也可以为您提供帮助。
关于java - 如何在java中使用getX()和getY()制作三角形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5307403/
我是一名优秀的程序员,十分优秀!