知识大全 Java2入门经典教程 11.1 了解线程[3]
Posted 知
篇首语:若要功夫深,铁杵磨成针。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 Java2入门经典教程 11.1 了解线程[3]相关的知识,希望对你有一定的参考价值。
Java2入门经典教程 11.1 了解线程[3] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
试试看 派生Thread的子类
用一个例子我们可以看到这是如何工作的 我们将定义一个由Thread的类派生的类TryThread 执行从main()方法开始
import java io TOException;public java TryThread extends thread private string firstName; //store for first nameprivate string secondName; //store for second nameprivate long awhile //Delay in millisecondspublic TryThread(string firsName string secondName long delaythis firstName=firstName //store the first namethis secondName=secondName; //store the second nameawhile=delay //store the delaysetDaemon(true) //Thread is daemonpublic static void main (string[]args)//create three threads Thread first =new TryThread( Hopalong cassidy L);Thread second=new TryThread( Marilyn Monroe L);Thread third =new TryThread( slim pickens L);system out println( press Enter when you have had enough \\n );first start(); //start the first thread second start(); //start the second threadthrid start(); //start the thrid threadtry system in read(); //wait until Enter key pressed system out println(Enter prosed \\n); catch (IOException e) //Hand Io exception system out println(e); //Output the exception system out println(Ending main()); return; //Method where thread execption will stare public void run() try while(ture) //Loop indefinitely system out prin(firstName); //output first name sleep(awhile); //wait awhile mses system out print(secondName + \\n); //output second name catch(InteruptedException e) //Hand thread interruption system out println(firstName+secondName+e); //Output the exception
cha138/Article/program/Java/gj/201311/27755相关参考
Java2入门经典教程11.1了解线程[4] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.1了解线程[2] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.1了解线程[1] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.1了解线程[8] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.1了解线程[7] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.1了解线程[6] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.2管理线程[3] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.2管理线程[4] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.2管理线程[2] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs
Java2入门经典教程11.2管理线程[1] 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&nbs