Chinaunix首页 | 论坛 | 博客
  • 博客访问: 252573
  • 博文数量: 44
  • 博客积分: 1795
  • 博客等级: 上尉
  • 技术积分: 465
  • 用 户 组: 普通用户
  • 注册时间: 2006-07-04 12:02
文章分类

全部博文(44)

文章存档

2015年(1)

2011年(1)

2009年(7)

2008年(2)

2007年(7)

2006年(26)

我的朋友

分类: Java

2006-07-11 15:47:16

public class ThreadTest
{
    private Object lock = new Object();
    public ThreadTest(final String str, final int nSleep)
    {
        Thread syncThread = new Thread(new Runnable()
        {
            int num = 0;
            public void run()
            {
                while (num < 20) {
                    try {
                        if (true) {
                            Thread.sleep(nSleep);
                        }
                        synchronized (lock) {
                            num++;
                            System.out.println(str + " The " + num + "th call in");
                        }
                    } catch (InterruptedException e) {
                        Thread.currentThread().interrupt();
                    }
                }
            }
        });
        syncThread.setName("My SyncOperation Thread");
        syncThread.start();
    }
    public static void main(String[] args)
    {
        ThreadTest tt = new ThreadTest("a", 10000);
        ThreadTest ttt = new ThreadTest("b", 1000);
    }
}
阅读(1850) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~