java语言实验指导书.doc_第1页
java语言实验指导书.doc_第2页
java语言实验指导书.doc_第3页
java语言实验指导书.doc_第4页
java语言实验指导书.doc_第5页
免费预览已结束,剩余19页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

实验1 java语言基础训练 1.1实验目的 通过简单的输入输出程序,熟悉java编程环境,掌握java程序结构,为进一步学习java语言的面向对象特征奠定基础。1.2实验要求 1熟悉jcreator或eclipse软件安装使用方法。 2掌握编写与运行 java 程序的方法。 3熟悉 java 语言的概貌,其中包括数据类型、变量、数组和程序控制结构。4掌握jdk 5.0的输入方法。 1.3实验内容1.3.1一个简单的问候程序 /* this is the first sample program */public class helloworld public static void main(string args) system.out.println( hello, world!); 1.3.2 输入输出程序 /* 适合于jdk 5.0或更高的版本 */import java.util.*; / 适合于jdk 5.0或更高的版本,以下同 public class inputtest public static void main(string args) scanner in = new scanner(system.in); / 适合于jdk 5.0或更高的版本,以下同 / get first input system.out.print(what is your name? ); string name = in.nextline(); / 适合于jdk 5.0或更高的版本,以下同 / get second input system.out.print(how old are you? ); int age = in.nextint(); / 适合于jdk 5.0或更高的版本,以下同 / display output on console system.out.println(hello, + name + . next year, youll be + (age + 1); 1.3.3 求100个整数的和import java.util.*;public class arrayofstringsdemo public static void main(string args) int a=new int100; scanner in=new scanner(system.in); int k; for(int i=0;ia.length;i+) k=i+1; system.out.print(n输入第 +k+ 个整数: ); ai=in.nextint(); long sum=0; for(int i=0;ia.length;i+) sum +=ai; system.out.println(整数的累计和是:+ sum); 1.3.4编程题1. 课后作业p24,22. p41,4实验 2 类编程练习 2.1实验目的 通过编程和上机实验理解 java 语言是如何体现面向对象编程基本思想,了解类的封装方法,以及 如何创建类和对象,了解成员变量和成员方法的特性,掌握 oop 方式进行程序设计的方法,了解类的继承性和多态性的作用。 2.2实验要求 1 编写一个体现面向对象思想的程序。 。 2 编写体现类的继承性的程序。 3 编写体现类的多态性的程序。2.3实验内容2.3.1用户自定义类 import java.util.*;public class employeetest public static void main(string args) / fill the staff array with three employee objects employee staff = new employee3; staff0 = new employee(carl cracker, 75000, 1987, 12, 15); staff1 = new employee(harry hacker, 50000, 1989, 10, 1); staff2 = new employee(tony tester, 40000, 1990, 3, 15); / raise everyones salary by 5% for (int i=0;istaff.length;i+) staffi.raisesalary(5); / print out information about all employee objects for (int i=0;istaff.length;i+) system.out.println(name= + staffi.getname() + ,salary= + staffi.getsalary() + ,hireday= + staffi.gethireday(); class employee public employee(string n, double s, int year, int month, int day) name = n; salary = s; gregoriancalendar calendar = new gregoriancalendar(year, month - 1, day); / gregoriancalendar uses 0 for january hireday = calendar.gettime(); public string getname() return name; public double getsalary() return salary; public date gethireday() return hireday; public void raisesalary(double bypercent) double raise = salary * bypercent / 100; salary += raise; private string name; private double salary; private date hireday;2.3.2类的继承性 class employee string name ;int salary;public employee(string name,int salary) = name;this.salary = salary;public string getdetails( )return name: +name+nsalary: +salary;class manager extends employee private string department ;public manager(string name,int salary,string department)super(name,salary);this.department = department;public string getdetails( )return name: +name+nsalary: +salary+ndepartment: + department;class secretary extends employeepublic secretary(string name,int salary)super(name,salary);public class testoverridingpublic static void main(string srgs)manager m = new manager(tom,2000,finance);secretary s = new secretary(mary,1500);system.out.println(m.getdetails();system.out.println(s.getdetails(); 2.3.3编程题1.p78,4。2.p111,2,33写一个程序,定义学生类student,用数组创建10个学生对象,完成以下功能:(1)统计学生的平均年龄。(2)按学号查询学生的相关信息。(3)统计成绩为优的学生人数 也可以改成录取程序。4写一个程序,定义接口或抽象类shape,由它派生出5个派生类:circle(圆)、 square(正方形)、 rectangle(矩形) triangle(三角形)、cylinder(圆柱)。利用java多态特征,计算几种图形的面积,并求他们的和。(参照c+教材 p213 例6.4) 实验 3异常处理(exception) 3.1实验目的 了解 java 中包(package)、接口(interface)和异常处理(exception)的作用,掌握包、接口、 异常处理的设计方法。 3.2实验要求 1. 了解 java 系统包的结构。 2. 掌握创建自定义包的方法。 3. 掌握使用系统接口的技术和创建自定义接口的方法。4. 理解系统异常处理的机制和创建自定义异常的方法。 3.3实验内容 编程题:p111,5.实验 4 建立图形用户界面 4.1实验目的 了解图形用户界面基本组件窗口、按钮、文本框、选择框、滚动条等的使用方法,了解如何使用布局管理器对组件进行管理,以及如何使用 java 的事件处理机制。 4.2实验要求 1. 理解 java 的事件处理机制,掌握为不同组件编写事件处理程序的方法。 2. 掌握编写独立运行的窗口界面的方法。 3. 了解 java swing 组件的使用方法。 4. 了解对话框的使用方法。4.3实验内容4.3.1图形用户界面及事件处理import java.awt.*;import java.awt.event.*;import javax.swing.*;public class buttontest public static void main(string args) buttonframe frame = new buttonframe(); frame.setdefaultcloseoperation(jframe.exit_on_close); frame.setvisible(true); /* a frame with a button panel*/class buttonframe extends jframe public buttonframe() settitle(buttontest); setsize(default_width, default_height); / add panel to frame buttonpanel panel = new buttonpanel(); add(panel); public static final int default_width = 300; public static final int default_height = 200; /* a panel with three buttons.*/class buttonpanel extends jpanel public buttonpanel() / create buttons jbutton yellowbutton = new jbutton(yellow); jbutton bluebutton = new jbutton(blue); jbutton redbutton = new jbutton(red); / add buttons to panel add(yellowbutton); add(bluebutton); add(redbutton); / create button actions coloraction yellowaction = new coloraction(color.yellow); coloraction blueaction = new coloraction(color.blue); coloraction redaction = new coloraction(color.red); / associate actions with buttons yellowbutton.addactionlistener(yellowaction); bluebutton.addactionlistener(blueaction); redbutton.addactionlistener(redaction); /* an action listener that sets the panels background color. */ private class coloraction implements actionlistener public coloraction(color c) backgroundcolor = c; public void actionperformed(actionevent event) setbackground(backgroundcolor); private color backgroundcolor; 4.3.2 使用匿名类 import java.awt.*;import java.awt.event.*;import javax.swing.*;public class textareatest public static void main(string args) textareaframe frame = new textareaframe(); frame.setdefaultcloseoperation(jframe.exit_on_close); frame.setvisible(true); /* a frame with a text area and buttons for text editing*/class textareaframe extends jframe public textareaframe() settitle(textareatest); setsize(default_width, default_height); buttonpanel = new jpanel(); / add button to append text into the text area jbutton insertbutton = new jbutton(insert); buttonpanel.add(insertbutton); insertbutton.addactionlistener(new actionlistener() public void actionperformed(actionevent event) textarea.append(the quick brown fox jumps over the lazy dog. ); ); / add button to turn line wrapping on and off wrapbutton = new jbutton(wrap); buttonpanel.add(wrapbutton); wrapbutton.addactionlistener(new actionlistener() public void actionperformed(actionevent event) boolean wrap = !textarea.getlinewrap(); textarea.setlinewrap(wrap); scrollpane.revalidate(); wrapbutton.settext(wrap ? no wrap : wrap); ); add(buttonpanel, borderlayout.south); / add a text area with scroll bars textarea = new jtextarea(8, 40); scrollpane = new jscrollpane(textarea); add(scrollpane, borderlayout.center); public static final int default_width = 300; public static final int default_height = 300; private jtextarea textarea; private jscrollpane scrollpane; private jpanel buttonpanel; private jbutton wrapbutton;4.3.4编程题1. p258,1,2,3,实验5 流与文件5.1实验目的 1 理解数据流的概念2 理解java流的层次结构3 理解文件的概念5.2实验要求 掌握字节流的基本使用方法掌握字符流的基本使用方法能够创建、读写、更新文件 5.3实验内容 5.3.1使用标准数据流的应用程序import java.io.*;public class copybytes public static void main(string args) throws ioexception /创建两个file类对象。 file inputfile = new file(farrago.txt); file outputfile = new file(outagainb.txt); /创建文件输入/输出字节流。 fileinputstream in = new fileinputstream(inputfile); fileoutputstream out = new fileoutputstream(outputfile); int c; /读写文件流中的数据。 while (c = in.read() != -1) out.write(c); /关闭流。 in.close(); out.close(); 5.3.2使用文件i/o流的应用程序 import java.io.*;public class standardiopublic static void main(string args)string s;bufferedreader in = new bufferedreader(new inputstreamreader(system.in);system.out.println(please input : );trys = in.readline();while(!s.equals(exit)system.out.println( read: +s);s = in.readline();system.out.println(end of inputing.);in.close();catch(ioexception e)e.printstacktrace();5.3.3使用随机文件类的应用程序 import java.io.*;public class randomaccesstest public static void main(string args) throws exception long filepoint = 0 ; string s; randomaccessfile file = new randomaccessfile(randomaccesstest.java,r); long filelength = file.length(); while (filepointfilelength) s = file.readline(); system.out.println(s); filepoint = file.getfilepointer(); file.close(); 5.3.4 编程题1.p192,2,4下面2道为曾用题目,没有书上的简单。2.写一段程序,判断当前硬盘上d:test文件夹是否存在,如果存在则列出其内的所有文件及子文件夹,不存在就创建此目录。3.写程序判断d:a.txt文件是否存在,如果存在则向其内依次写入字符串 “will smith”,整数25,写入后再从文件中将其读出。实验6 常用实用类编程题1.写一个程序,定义学生类student,用arraylist存储创建的10个学生对象,完成以下功能:(1) 从窗口界面输入学生信息(创建学生对象)。(2) 输入后,点击界面“录取”按钮,进行录取(3) 点击“统计”按钮,显示已录取的所有学生信息(包括学号,姓名,分数等)。2.设计一个java application程序,从命令行输入一字符串,完成如下操作:(1)获得该字符串的长度,并输出,输出格式如下:字符串长度为:xxxx(2)统计该字符串中大写字母、小写字母和非英文字母各多少个,并输出,输出格式如下: 大写字母为:xxxx个 小写字母为:xxxx个 非英文字母为:xxxx个实验7 多线程7.1实验目的 1 线程的概念、线程的生命周期。2 多线程的编程:继承thread类与使用runnable接口。3 使用多线程机制实现动画。7.2实验要求 1 掌握利用java语言编写多线程程序的方法2 掌握线程的调度方法3 掌握多线程环境中gui程序的编写方法7.3实验内容7.3.1 利用thread子类的方法实现多线程 public class threadtestpublic static void main(string args )thread t1 = new thread( new hello( ) );thread t2 = new thread( new hello( ) );t1.start( );t2.start( );class hello implements runnable int i ; public void run( )while( true)system.out.println(hello+i+);if (i=5) break ; 7.3.2利用runnable接口的方法实现多线程 public class threadterminate public static void main(string args ) throws exceptionint i=0;hello h = new hello();thread t = new thread( h);t.setpriority(thread.max_priority);t.start(

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论