java(教学0)韩建雷9练习题第九章

java(教学0)韩建雷9练习题第九章

ID:43091043

大小:257.57 KB

页数:40页

时间:2019-09-26

java(教学0)韩建雷9练习题第九章_第1页
java(教学0)韩建雷9练习题第九章_第2页
java(教学0)韩建雷9练习题第九章_第3页
java(教学0)韩建雷9练习题第九章_第4页
java(教学0)韩建雷9练习题第九章_第5页
资源描述:

《java(教学0)韩建雷9练习题第九章》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、第九章JAVA多线程机制9-1编程设计弹跳球画面,即小球在一定区域内弹跳,有开始和关闭的相关控件。答案:程序①(Bounce)packagebounce;importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;*Showsananimatedbouncingball.*@version1.332007-05-17*@authorCayHorstmann*/publicclassBounce{publicstaticvoidmain(String[]args){EventQueue.

2、invokeLater(newRunnable(){publicvoidrun(){JFrameframe=newBounceFrame();frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);frame.setVisible(true);});广**Theframewithballcomponentandbuttons.*/classBounceFrameextendsJFrame{privateBallComporientcomp;publicstaticfinalintSTEPS=10

3、00;publicstaticfinalintDELAY=3;*ConstructstheframewiththecomponentforshowingthebouncingballandStartandClose*buttons*/publicBounceFrame(){setTitle(”Bounce”);comp=newBallComponent();add(comp,BorderLayout.CENTER);JPanelbuttonPanel=newJPanel();addButton(buttonPanel,"Start”,newAc

4、tionListener(){publicvoidactionPerformed(ActionEventevent)addBall();});addButton(buttonPanel,"Close",newActionListener(){publicvoidactionPerformed(ActionEventevent){System.exit(O);}});add(buttonPanel,BorderLayout.SOUTH);pack();}*Addsabuttontoacontainer.*@paramcthecontainer*@

5、paramtitlethebuttontitle*@paramlistenertheactionlistenerforthebutton*/publicvoidaddButton(Containerc,Stringtitle,ActionListenerlistener){JButtonbutton=newJButton(title);c.add(button);button.addActionListener(listener);}*Addsabouncingballtothepanelandmakesitbounce1,000times.*

6、/publicvoidaddBall()try{Ballball=newBall();comp.add(ball);for(inti=1;i<=STEPS;i++){ball.move(comp.getBounds());comp.paint(comp.getGraphics());Thread.sleep(DELAY);}}catch(InterruptedExceptione){}}}程序②(Ball)packagebounce;importjava.awt.geom.*;Aballthatmovesandbouncesofftheedge

7、sofarectangle*@version1.332007-05-17*@authorCayHorstmann*/publicclassBallprivatestaticfinalintXSIZE=15;privatestaticfinalintYSIZE=15;privatedoublex=0;privatedoubley=0;privatedoubledx=1;privatedoubledy=1;*Movestheballtothenextposition,reversingdirectionifithitsoneoftheedges*/

8、publicvoidmove(Rectangle2Dbounds){x+=dx;y+=dy;if(xvbounds.getMinX()){x=boun

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。