时间:2021-05-20
本文实例讲述了Java使用Thread和Runnable的线程实现方法。分享给大家供大家参考,具体如下:
一 使用Thread实现多线程模拟铁路售票系统
1 代码
public class ThreadDemo{ public static void main( String[] args ) { TestThread newTh = new TestThread( ); // 一个线程对象只能启动一次 newTh.start( ); newTh.start( ); newTh.start( ); newTh.start( ); }}class TestThread extends Thread{ private int tickets = 5; public void run( ) { while( tickets > 0 ) { System.out.println( Thread.currentThread().getName( ) + " 出售票 " + tickets ); tickets -= 1; } }}2 运行
Thread-0 出售票 5
Thread-0 出售票 4
Thread-0 出售票 3
Thread-0 出售票 2
Thread-0 出售票 1
Exception in thread "main" java.lang.IllegalThreadStateException
at java.lang.Thread.start(Thread.java:708)
at ThreadDemo.main(ThreadDemo.java:16)
3 说明
一个线程只能启动一次
二 main方法中产生4个线程
1 代码
public class ThreadDemo{ public static void main(String[]args) { // 启动了四个线程,分别执行各自的操作 new TestThread( ).start( ); new TestThread( ).start( ); new TestThread( ).start( ); new TestThread( ).start( ); }}class TestThread extends Thread{ private int tickets = 5; public void run( ) { while (tickets > 0) { System.out.println(Thread.currentThread().getName() + " 出售票 " + tickets); tickets -= 1; } }}2 运行
Thread-0 出售票 5
Thread-0 出售票 4
Thread-0 出售票 3
Thread-0 出售票 2
Thread-0 出售票 1
Thread-1 出售票 5
Thread-1 出售票 4
Thread-1 出售票 3
Thread-1 出售票 2
Thread-1 出售票 1
Thread-2 出售票 5
Thread-2 出售票 4
Thread-2 出售票 3
Thread-2 出售票 2
Thread-2 出售票 1
Thread-3 出售票 5
Thread-3 出售票 4
Thread-3 出售票 3
Thread-3 出售票 2
Thread-3 出售票 1
三 使用Runnable接口实现多线程,并实现资源共享
1 代码
public class RunnableDemo{ public static void main( String[] args ) { TestThread newTh = new TestThread( ); // 启动了四个线程,并实现了资源共享的目的 new Thread( newTh ).start( ); new Thread( newTh ).start( ); new Thread( newTh ).start( ); new Thread( newTh ).start( ); }}class TestThread implements Runnable{ private int tickets = 5; public void run( ) { while( tickets > 0 ) { System.out.println( Thread.currentThread().getName() + " 出售票 " + tickets ); tickets -= 1; } }}2 运行
Thread-0 出售票 5
Thread-0 出售票 4
Thread-0 出售票 3
Thread-0 出售票 2
Thread-0 出售票 1
更多java相关内容感兴趣的读者可查看本站专题:《Java面向对象程序设计入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》
希望本文所述对大家java程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、区别Java中启动线程有两种方法,继承Thread类和实现Runnable接口,由于Java无法实现多重继承,所以一般通过实现Runnable接口来创建线程
Java创建线程(Runnable接口和Thread类)大多数情况,通过实例化一个Thread对象来创建一个线程。Java定义了两种方式:实现Runnable接
Java创建线程主要有三种方式:继承Thread类创建线程、实现Runnable接口创建线程和实现Callable和Future创建线程。继承Thread类pu
java多线程实现方式主要有两种:继承Thread类、实现Runnable接口1、继承Thread类实现多线程继承Thread类的方法尽管被我列为一种多线程实现
在Java中创建线程有两种方法:使用Thread类和使用Runnable接口。在使用Runnable接口时需要建立一个Thread实例。因此,无论是通过Thre