好的,所以我的程序应该根据用户键入的坐标(X,Y,宽度,长度)自动绘制一个矩形。当我运行程序时,线程主错误中出现异常。
这是确切的错误:
Exception in thread "main" java.lang.NullPointerException
at rectangle.draw(rectangle.java:31)
at rectangle.main(rectangle.java:52)
请告诉我我做错了!
谢谢!
代码:`import gpdraw。*;
导入java.util.Scanner;
公共类矩形{
private static double myX;
private static double myY;
private static double myWidth;
private static double myHeight;
private DrawingTool myPencil;
private SketchPad myPaper;
public double getPerimeter(){
double perimeter;
perimeter = myWidth * 2 + myHeight * 2;
return perimeter;
}
public double Area(){
double area;
area = myHeight * myWidth;
System.out.println("Area: " + area);
return area;
}
public void draw(){
myPencil.up();
myPencil.move(myX , myY);
myPencil.down();
myPencil.move(myX + myWidth, myY);
myPencil.move(myX + myWidth, myY + myHeight);
myPencil.move(myX , myY);
}
public static void main(String[] args){
Scanner input = new Scanner(System.in);
System.out.println("Enter X Value: ");
myX = input.nextInt();
System.out.println("Enter Y Value: ");
myY = input.nextInt();
System.out.println("Enter Width: ");
myWidth = input.nextInt();
System.out.println("Enter Height: ");
myHeight = input.nextInt();
rectangle picture = new rectangle();
picture.draw();
}
}
`
第51行:picture.draw();
第31行:myPencil.up();
最佳答案
您永远不会为myPencil
字段分配值,因此它将具有默认值null
。当您尝试在此处取消引用它时:
myPencil.up();
...这将引发异常。
大概是要给
myPencil
一个值,例如private DrawingTool myPencil = new Pencil();
...或者在构造函数中这样做?