JAVA程序设计基础实验四.doc
《JAVA程序设计基础实验四.doc》由会员分享,可在线阅读,更多相关《JAVA程序设计基础实验四.doc(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、实 验 报 告 四课 程JAVA程序设计实验项目异常与线程 成 绩学 号XXXXXX姓 名 XXXX实验日期2012.10.17专业班级计算机科学与技术09级指导教师XXXXX一【实验目的】(1)理解异常和异常处理的概念(2)理解异常处理机制二【实验内容】【项目一】理解异常处理机制1.编写以下程序,并编译运行3.使用trycatchfinal结构,捕获并处理异常,在final里中打印输出:public class Ex7_1 public static void main(String args) try String output= The,quick,brown,fox,jumps,ove
2、r,the,lazy,dog.; int i=0; while(i12) System.out.print(outputi+); catch(Exception e) System.out.print(haha.); finally System.out.println(不管怎样都要执行的语句!); 【项目二】完成实验指导书5.2.4 异常处理(1)程序代码 class NoLowerLetter extends Exception public void print() System.out.printf(%c,#); class NoDigit extends Exception publ
3、ic void print() System.out.printf(%c,*); class People void printLetter(char c) throws NoLowerLetter if(cz) NoLowerLetter noLowerLetter=new NoLowerLetter(); throw noLowerLetter; else System.out.print(c); void printDigit(char c) throws NoDigit if(c9) NoDigit noDigit=new NoDigit(); throw noDigit; else
4、System.out.print(c); public class ExceptionExample public static void main (String args) People people=new People(); for(int i=0;i128;i+) trypeople.printLetter(char)i); catch(NoLowerLetter e)e.print(); for(int i=0;i128;i+) trypeople.printDigit(char)i); catch(NoDigit e)e.print(); (2)运行结果【项目三】使用Thread
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- JAVA 程序设计 基础 实验
限制150内