题目内容

阅读以下说明和JAVA2代码,将应填入(n)处的字句写在对应栏内。
【说明】
以下程序实现了利用鼠标任意移动该圆形的位置,仔细阅读代码和相关注释,将程序补充完整。
【代码6】
import java.awt.*;
import java.awt.event.*;
public class CIUSAMPLE extends Frame. implements MouseMotionListener, MouseListener
{
static CIUSAMPLE frm=new CIUSAMPLE ();
int x=70,y=60,posX=70,posY=60,dx,dy;
public static void main (String args[])
{
frm.setTitle ("Dragging a circle");
frm.setSize (200,150 );
(1)
frm.addMouseMotionListener (frm );
frm. setVisible (true );
}
public void mousePressed (MouseEvent e )
{
(2)
dy=e.getY () -posY;
}
public void mouseDragged (MouseEvent e )
{
(3)
y=e.getY () -dy;
if (dx>0 && dx<50 && dy>0 && dy<50 ) //如果指我落在正方形区域内
{
Graphics g=getGraphics ();
(4)
}
}
public void paint (Graphics g )
{
g.setColor (Color. pink ); // 设置绘图颜色为粉红
g.fillOval (x,y,50,50 ); //以基准点为图形的左上角绘出圆形
(5)
posY=y;
}
public void mouseMoved (MouseEvent e ) { }
public void mouseReleased (MouseEvent e ) { }
public void mouseEntered (MouseEvent e ) { }
public void mouseExited (MouseEvent e ) { }
public void mouseClicked (MouseEvent e ) { }
}

查看答案
更多问题

This international organisation pays special attention to the world peace and a harmonious

从一门规范学科的建立,从独立的教育学诞生的角度说,通常以德国心理学的______著作《普通教育学》为标志。

已有研究表明,创造力与智力的关系表现为一定条件下相关的 关系。

用因素分析法计算周转利用率的提高对节约周转材料使用费的影响程度。

答案查题题库