- 1、本文档共45页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Java语言程序设计第八章
第8章 线程;本讲内容;线程的概念;Thread类简介;例8_1 在新线程中计算整数的阶乘;// class FactorialThread controls thread execution
class FactorialThread extends Thread {
private int num;
public FactorialThread( int num )
{ this.num=num; }
public void run()
{ int i=num;
int result=1;
while(i0)
{ result=result*i; i=i-1; }
System.out.println(The factorial of +num+
is +result);
System.out.println(new thread ends);
}
} ;运行结果如下:
main thread starts
new thread started,main thread ends
The factorial of 10 is 3628800
new thread ends
;例8_2 创建3个新线程,每个线程睡眠任意0-6秒钟,然后结束。;class TestThread extends Thread {
private int sleepTime;
public TestThread( String name )//构造函数
{ super( name ); //调用基类构造函数为线程命名
//获得随机休息毫秒数
sleepTime = ( int ) ( Math.random() * 6000 );
}
public void run() //线程启动并开始运行后要执行的方法
{ try {
System.out.println(
getName() + going to sleep for + sleepTime );
Thread.sleep( sleepTime ); //线程休眠
}
catch ( InterruptedException exception ) {};
//运行结束,给出提示信息
System.out.println( getName() + finished );
}
};运行结果为:
Starting threads
Threads started, main ends
thread1 going to sleep for 3519
thread2 going to sleep for 1689
thread3 going to sleep for 5565
thread2 finished
thread1 finished
thread3 finished;Runnable接口;例8_3 使用Runnable接口实现例8_1功能;// class FactorialThread controls thread execution
class FactorialThread implements Runnable
{ private int num;
public FactorialThread( int num )
{ this.num=num; }
public void run()
{ int i=num;
int result=1;
while(i0)
{ result=result*i; i=i-1; }
System.out.println(The factorial of +num+
is +result);
System.out.println(new thread ends);
}
} ;例8_4 使用Runnable接口实现例8_2功能;cl
文档评论(0)