码迷,mamicode.com
首页 > 编程语言 > 详细

多线程

时间:2017-11-18 23:37:27      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:adt   rri   system   start   run   exce   pack   stack   exception   

多线程习题

题目:

编写一个创建三个线程对象的程序。每个线程应该输出一则消息,并且消息后紧跟字符串“消息结束”。

在线程输出消息后,应暂停一秒钟,然后才输出“消息结束”,首先应该由线程1输出消息,然后是线程2和线程3。

 

package multithread;

public class ThreadTest {

	public static void main(String[] args) {

		showMsg s = new showMsg();

		callMsg c1 = new callMsg(s, "消息1");
		callMsg c2 = new callMsg(s, "消息2");
		callMsg c3 = new callMsg(s, "消息3");

		c1.start();
		c2.start();
		c3.start();

	}
}
	class showMsg {
		public void call(String msg) {
			System.out.println(msg);
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				
				e.printStackTrace();
			}
			System.out.println("消息结束");
		}
	}

	class callMsg extends Thread {
		showMsg showmsg;
		String msg;

		public callMsg(showMsg showmsg, String msg) {
			this.showmsg = showmsg;
			this.msg = msg;
		}

		@Override
		public void run() {
			synchronized (showmsg) {
				showmsg.call(msg);
			}
		}
	}

  

多线程

标签:adt   rri   system   start   run   exce   pack   stack   exception   

原文地址:http://www.cnblogs.com/tangjiang-code/p/7857976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!