因为我得到了我之前关于arrayoutofbounds错误解决方案的问题,但被否决了(没有不好的感觉:D但这是我的第一个问题,所以你应该期待一些"错误")。不管怎样,我要用一个新问题再试一次。这是我在编程II实验课考试中的一个项目练习。首先,它需要一个叫做Point的类,它用x和y坐标描述二维空间中的一个点(小菜一碟)。
此外,它需要一个名为Line的类(一条线通常由二维空间中的2个点组成)(这是否意味着类Line必须继承类Point?)并且用2个点描述二维空间中的一条线(也是小菜一碟)。此外,它需要一个名为void MoveLine(Point, Point)的方法来移动线(这里开始卡住:D)。
最后,它需要创建一个主类,其中有3个对象a, B, C作为点(使用类Point中的2个构造函数),然后在屏幕上打印点B的信息。之后,它需要创建两个对象D和E作为Lines,并将Line D初始化为0值,Line E初始化为点A和点b。接着,它需要在屏幕上打印Line E的信息(到目前为止还不错),但它希望我们移动Line E,使其穿过点(1,1),即点c。最后,它希望我们在屏幕上打印行E的新信息。你能给我指个正确的方向吗?谢谢!
下面是我到目前为止创建的完整代码,以避免像我之前的问题中那样的混淆。
public class Point {
protected double x;
protected double y;
public Point() {
//First constructor-no arguments
}
public Point(double x1, double y1) {
//Second constructor-2 arguments
x = x1;
y = y1;
}
public void setX(int x1) {
x = x1;
}
public double getX() {
return x;
}
public void setY(int y1) {
y = y1;
}
public double getY() {
return y;
}
public String toString() {
return "("+x+","+y+")";
}
}
类行
public class Line extends Point{
private Point pStart;
private Point pEnd;
public Line() {
//First constructor-no arguments
}
public Line(Point p1, Point p2) {
//Second constructor-2 arguments
pStart = p1;
pEnd = p2;
}
public void setStartPoint(Point p1) {
pStart = p1;
}
public Point getStartPoint() {
return pStart;
}
public void setEndPoint(Point p2) {
pEnd = p2;
}
public Point getEndPoint() {
return pEnd;
}
public String toString() {
return "Line's start point: "+pStart.toString()+"t"+"Line's end point: "+pEnd.toString();
}
public void MoveLine(Point p, Point mp) {
//My problem :D
p.x += mp.x;
p.y += mp.y;
}
}
主类
public class TestProgram {
public static void main(String[] args) {
Point A = new Point();
Point B = new Point(4,5);
Point C = new Point(1,1);
Point zeroStartPoint = new Point(0,0);
Point zeroEndPoint = new Point(0,0);
A.setX(8);
A.setY(13);
System.out.println("Point B: "+B.toString());
Line D = new Line();
Line E = new Line(A,B);
D.setStartPoint(zeroStartPoint);
D.setEndPoint(zeroEndPoint);
System.out.println("Line E: "+"n"+E.toString());
MoveLine(E.pStart,); //WTF? my problem no.2
System.out.println("Line E: "+"n"+E.toString());
/* As you can see my problem is more about logic
and less about programming. Any ideas? */
}
}
感谢您花时间阅读本文。我期待你的回复。
继续我的评论,移动line E包括(即交叉)点(1,1)的一个非常简单的方法是将 pStart或pEnd更改为等于(1,1)。