欢迎来到天天文库
浏览记录
ID:38099831
大小:95.50 KB
页数:5页
时间:2019-05-16
《java编程六new》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、南昌航空大学实验报告2011年4月20日课程名称:Java语言程序设计实验名称:异常与多线程班级:080612学生姓名:游建军学号:08061229指导教师评定:签名:一、实验目的1、了解Java的异常处理机制。2、了解线程的概念。3、掌握使用Java的异常处理机制来提高程序的容错性的方法。4、学习简单的多线程编程。二、实验任务1、选择一个比较了解的Java系统的异常。例如ArrayIndexOutofBoundsException,编程创建并抛出这个异常类的实例。运行该程序并观察执行的结果。2、利用多线程技术编写Applet程序,包含一个滚动的字符串,字符串从左向右运动,当所有的字符串都
2、从屏幕的右边消失后,字符串重新从左边出现并继续向右边移动。3、利用多线程技术编写Applet程序,实现在播放一个动画文件的同时,播放一段背景音乐。三、实验分析与代码实现1、根据题意,自定义一个异常类ArrayIndexOutofBoundsException,当一个数组的长度大于100或则小于0的时候为数组越界,源代码如下:importjava.io.*;classArrayIndexOutOfBoundsExceptionextendsException{publicArrayIndexOutOfBoundsException(){super();}publicArrayIndexOut
3、OfBoundsException(Strings){super(s);}}publicclassArrayIndex{publicstaticvoidmain(Stringargs[]){intstr[]=newint[109];Strings;try{intarray=Array(str);s=String.valueOf(array);}catch(ArrayIndexOutOfBoundsExceptione){s=e.getMessage();}System.out.println(s);}publicstaticintArray(intstr[])throwsArrayInde
4、xOutOfBoundsException{intint1;intanswer=-1;try{int1=str.length;if(int1>100
5、
6、int1<0){ArrayIndexOutOfBoundsExceptione=newArrayIndexOutOfBoundsException("Thearrayisoutofbounds.");throwe;}answer=int1;}catch(ArrayIndexOutOfBoundsExceptione){System.out.println(e.toString());}returnanswer;}}2、利用Applet实现一
7、个滚动条“我是滚动条”,源代码如下:importjava.applet.*;importjava.awt.*;publicclassTextScrollextendsAppletimplementsRunnable{intx=-200;ThreadScrollwords=null;publicvoidinit(){setBackground(Color.BLUE);setForeground(Color.white);setFont(newFont("TimesRoman",Font.BOLD,20));}publicvoidstart(){if(Scrollwords==null){Sc
8、rollwords=newThread(this);Scrollwords.start();}}publicvoidrun(){while(Scrollwords!=null){x=x+5;if(x>getWidth())x=-200;repaint();try{Scrollwords.sleep(80);}catch(InterruptedExceptione){}}}publicvoidpaint(Graphicsg){g.drawString("080612",x,120);}publicvoidstop(){Scrollwords.yield();Scrollwords=null;
9、}}3.在一个Applet中实现一个多线程——*.au文件的播放并且在播放的过程中有一个滚动条,源代码如下:importjava.applet.*;importjava.awt.*;publicclassMusicextendsAppletimplementsRunnable{AudioClipsound;intx=-200;ThreadScrollwords=null;publicvoidinit(){setBackg
此文档下载收益归作者所有