JAVA基础实验编程.doc
《JAVA基础实验编程.doc》由会员分享,可在线阅读,更多相关《JAVA基础实验编程.doc(10页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、Java 实验报告实验日期:2011年10月17日 实验机房与机号: 实验班级: 组员姓名学号: 指导教师:刘寿强 第三单元实验目的:掌握陈述面向对象的思想,通过创建类的实力来体现实验内容:第三单元;实验步骤:3-2class DogString color;int weight;public Dog(String color,int weight)this.color=color;this.weight=weight;public void showd()System.out.println(这是体重为+weight+斤,+颜色为+color+的狗);class CatString colo
2、r;int weight;public Cat(String color,int weight)this.color=color;this.weight=weight;public void showc()System.out.println(这是体重为+weight+斤,+颜色为+color+的猫);public class Apublic static void main(String args)Dog d1= new Dog(黄色,100);Cat c1= new Cat(白色,200);d1.showd();c1.showc(); 3-3class CarString ping;dou
3、ble price;String date;public Car(String ping,double price,String date)this.ping=ping;this.price=price;this.date=date;public void show()System.out.println(ping+轿车,价格为+price+date);public void qd()System.out.println(汽车正在启动);public void sc()System.out.println(汽车正在刹车);public void js()System.out.println(汽
4、车正在加速);public class Apublic static void main(String args)Car car=new Car(奇瑞,3000,保修终生!);car.show();car.js();3-4public class ConsoleParamspublic static void main(String args)if (args.length20)System.out.println(数值较大);elseSystem.out.println(数值较小或等于);3-6class SExamstatic int num=0;public SExam() num+;p
5、ublic class StaticExampublic static void main(String args)SExam se1=new SExam();SExam se2=new SExam();SExam se3=new SExam();System.out.println(SExam.num+次);第四单元目的:掌握格式化转换异常,实验内容:第四单元步骤如下:public class NumberFormatExceptionText /* * param args */public static void main(String args) / TODO Auto-generat
6、ed method stubint iArray=0,0; try iArray0=Integer.parseInt(args0); iArray1=Integer.parseInt(args1);catch(ArrayIndexOutOfBoundsException e) System.out.println(用户输入的数据不完整,程序使用默认值代替:); catch(NumberFormatException e) System.out.println(用户输入的不全是数值型的数据,程序使用默认值替代:); System.out.println(iArray0+iArray1+=+(iA
7、rray0+iArray1);public class ArithmeticExceptionText /* * param args */public static void main(String args) / TODO Auto-generated method stubtryint a=args.length;int b=42/a;catch(ArithmeticException e)System.out.println(除数不能够为零啊!);import java.util.Random;public class NegativeIndexExceptionDemo public
8、 int getNumberOfRandomIndex(int iArray)throws NegativeIndexExceptionRandom random=new Random();int index=random.nextInt();if(index0) throw new NegativeIndexException(this.getClass().getName()+.getNumberOfRandomIndex(int)方法不能够处理自己所抛出的异常:索引值+index+产出异常); index=index%iArray.length;return iArrayindex;pu
9、blic static void main(String args) int iArray=0,1,3,4,5,6,7,8,9;int randomNumber=0;tryrandomNumber=new NegativeIndexExceptionDemo().getNumberOfRandomIndex(iArray);catch(NegativeIndexException e)System.out.println(e+nmian方法有能力处理该异常t);randomNumber=Math.round(float)(Math.random()*10);System.out.println
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- JAVA 基础 实验 编程
限制150内