JAVA实验 多线程

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

实验四多线程
一、实验目的
1.掌握线程、多线程的概念和线程的生命周期;
2.掌握创建单线程和多线程的方法,学会使用Thread类和实现Runnable接口。

二、实验要求
1.掌握利用JAVA语言编写多线程程序的方法。

2.掌握线程的调度方法。

3.掌握多线程环境中GUI程序的编写方法。

三、实验内容
1.用创建Thread子类的方法实现多线程。

class SimpleThread extends Thread {
public SimpleThread(String str) {
super(str);
}
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(i + " " + getName());
try {
sleep((int)(Math.random() * 1000));
} catch (InterruptedException e) {}
}
System.out.println("DONE! " + getName());
}
}
public class SY4_1 {
public static void main (String[] args) {
new SimpleThread("Go to Beijing??").start();
new SimpleThread("Stay here!!").start();
}
}
问题:
1)程序的运行结果和功能分别是什么?
2)如果程序中去掉try......catch语句,程序是否仍能正常运行?
3)Thread子类是如何实现多线程机制的?
4)如果希望执行3个线程,再显示“Go to HeFei”,程序如何修改?显示次序
是否相同?为什么会有这样的现象?
2.用实现Runnable接口的方法实现多线程。

import java.awt.*;
import java.applet.*;
import java.util.*;
public class SY4_2 extends Applet implements Runnable{
Thread clockThread;
public void start(){
if(clockThread==null){
clockThread=new Thread(this,"Clock");
clockThread.start();
}
}
public void run(){
while(clockThread !=null){
repaint();
try{
clockThread.sleep(1000);
}catch(InterruptedException e){}
}
}
public void paint(Graphics g){
Date now=new Date();
g.drawString(now.getHours()+";"+now.getMinutes()+";"+now.getSeco nds(),5,10);
}
public void stop(){
clockThread.stop();
clockThread=null;
}
}
问题:
1)程序的运行结果和功能分别是什么?
2)在什么情况下一般要通过实现Runnable接口实现线程机制?
3)Runnable接口是如何实现多线程机制的?
4)程序中是通过什么方法逐秒更新时间的?
3.线程的同步
class Callme{
void call(String msg){
System.out.print("["+msg);
try{
Thread.sleep(1000);
}catch(InterruptedException e){
System.out.print("Interrupted");
}
System.out.print("]");
}
}
class Caller implements Runnable{
String msg;
Callme target;
Thread t;
public Caller(Callme targ,String s){
target=targ;
msg=s;
t=new Thread(this);
t.start();
}
public void run(){
synchronized(target){
target.call(msg);
}
}
}
public class SY4_3 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Callme target=new Callme();
Caller ob1=new Caller(target,"Hello");
Caller ob2=new Caller(target,"synchronize");
Caller ob3=new Caller(target,"World");
try{
ob1.t.join();
ob2.t.join();
ob3.t.join();
}catch(InterruptedException e){
System.out.println("Interrupted");
}
}
}
问题:
1)程序的运行结果和功能分别是什么?
2)程序中如何实现线程的同步?
3)去掉程序中的关键字synchronized,运行结果如何?
4.线程间的通信
import ng.*;
public class SY4_4 implements Runnable{
public SY4_4(){
TestThread testthread1=new TestThread(this,"1");
TestThread testthread2=new TestThread(this,"2");
testthread2.start();
testthread1.start();
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
SY4_4 demoThread1=new SY4_4();
}
public void run(){
TestThread t=(TestThread)Thread.currentThread();
try{
if(!t.getName().equalsIgnoreCase("1")){
synchronized(this){wait();}
}
while(true){
System.out.println("@thread"+t.getName()+"="+t.increaseTime());
if(t.getTime()%10==0){
synchronized(this){
System.out.println("*********change
thread*******");
this.notifyAll();
if(t.getTime()==20)break;
wait();
}
}
}
}catch(Exception e){e.printStackTrace();}
}
}
class TestThread extends Thread{
private int time=0;
public TestThread(Runnable r,String name){
super(r,name);
}
public int getTime(){
return time;
}
public int increaseTime(){
return ++time;
}
}
问题:
1)程序的运行结果和功能分别是什么?
2)程序是如何实现线程通信的?可否通过其他方法进行线程间的通信?
3)程序中如果去掉“notify();”语句,程序运行结果会怎样?为什么?
4)synchronized(this);语句的作用是什么?如果去掉此语句,能否实现线程
间的通信?为什么?
四、实验练习题
试用线程的方法编写两个5X5整数矩阵相乘的计算程序,用5个线程完成结果矩阵每一行的计算。

(矩阵值在0-10之间,并利用随机方法生成)
实验报告内容:
实验内容1、2及实验练习题。

相关文档
最新文档