当用Line方法画线之后,CurrentX与CurrentY在何处?
当用Line方法画线之后,CurrentX与CurrentY在何处?
相关考题:
下面是一个Applet程序,程序的功能是显示一个圆心在Applet的中心,半径从0到100像素的不断变大的蓝色球的动画。请改正程序中的错误(有下划线的语句),使程序执行后,能得到预期的结果。注意:不改动程序的结构,不得增行或删行。程序的执行结果为:import java.awt.*;import java.applet.*;/*<applet code=XiaoQiu width=800 height=600></applet>*/public class XiaoQiu extends Applet implements Runnable{int currentX=0,currentY=0;Thread m_Draw=null;public void init(){m_Draw=new Thread (super);}public void paint(Graphics g){g.setColor(Color.blue);mycircle(g,getSize().width/2,getSize().height/2,currentX,currentY);}public void start(){m_Draw.start();try{Thread.sleep(500);}catch(InterruptedException e){}}public void stop(){if(m_Draw.isAlive())m_Draw. stop();}public void run(){try{while(true){currentX++;currentY++;if(currentX>i00(currentY>100)){currentX=0;currentY=0;}paint();Thread.sleep(100);}}catch(InterruptedException e){}}public void mycircle(Graphics g,int x,int y,int rx, int ry){g.filloval(x-rx,y-ry,2*rx,2*ry);}}ex3 9_3. html:<html><head><title>A Simple Program</title></head><body><applet cede=" XiaoQiu.class" width=800 height=400></applet></body></html>
当用户端cisco路由器上用showinterface命令时line和lineprotocal可能出现的几种组合?()。 A.line down;line protocol downB.line down;line protocolC.line up;line protocol downD.line up;line protocol up
当设置了容器对象的DrawWidth属性后,会影响()A、Pset、Line、Circle方法B、Line、Shape控件C、Pset、Line、Circle方法和Line、Shape控件D、Line、Circle、point方法
以下这段在FORM的CLICK事件中的程序运行后的结果是(). CurrentX=1500 CurrentY=500 Line-(3000,2000) Line-(1500,2000) Line-(1500,500)A、三条直线B、矩形C、三角形D、等腰直角三角形
当用户端cisco路由器上用showinterface命令时line和lineprotocal可能出现的几种组合?()。A、line down;line protocol downB、line down;line protocolC、line up;line protocol downD、line up;line protocol up
多选题当用户端cisco路由器上用showinterface命令时line和lineprotocal可能出现的几种组合?()。Aline down;line protocol downBline down;line protocolCline up;line protocol downDline up;line protocol up
单选题在窗体中利用Print方法输出文本信息时,信息的输出位置由()属性设置。ALeftBTopCx,yDCurrentX,CurrentY