请帮忙改正这个JAVA小程序

照书打的,不知道怎样有错了。。。importjava.awt.*;publicclassFancyPicture{/***@paramargs*/publicstatic... 照书打的,不知道怎样有错了。。。

import java.awt.*;
public class FancyPicture{

/**
* @param args
*/
public static void main(String[] args) {

DrawingPanel panel = new DrawingPanel(250.220);
Graphics 2D g2 = panel.getGraphics();
g2.translate(100,120);
g2.fillRect(-5,-5,10,10);
for(int i=0 ; i<=12 ;i++){
g2.setColor(Color.BLUE);
g2.fillRect(20,20,20,20);
g2.setColor(Color.BLACK);
g2.drawString(" "+i,20,20);
g2.rotate(Math.toRadian(30));
g2.scale(1.1,1.1);
}

}

}

=====================
以下是错误提示:
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
DrawingPanel cannot be resolved to a type
DrawingPanel cannot be resolved to a type
Syntax error on token "2D", delete this token
The method toRadian(int) is undefined for the type Math
The method scale(double, double) is undefined for the type Graphics

at FancyPicture.main(FancyPicture.java:9)
展开
 我来答
河蟹和谐河蟹
2009-10-31 · TA获得超过1156个赞
知道小有建树答主
回答量:1028
采纳率:0%
帮助的人:794万
展开全部
DrawingPanel 好像是javax/swine的类,所以要import对应的类名称。

Graphics 2D应该是Graphics2D

g2.rotate(Math.toRadian(30));
g2.scale(1.1,1.1);
可以改成
g2.rotate(Math.toRadian((float)30));
g2.scale(1.1f,1.1f);
vobit
2009-10-31
知道答主
回答量:33
采纳率:0%
帮助的人:20.9万
展开全部
DrawingPanel这个类是在哪里定义的,应该还有这个类才对。看你帖出来的是错在这里啊。另外把那个2D去掉吧。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式