A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class Ticked  /*extends Thread*/ implements Runnable
{
        private int tick=100;
        /*Ticked(String name)
        {
                super(name);
        }*/
        public void run()
        {
                while(true)
                {
                        if(tick>0)
                                System.out.println(Thread.currentThread().getName()+"....sale"+tick--);
                }
        }
}

class  TickedDemo
{
        public static void main(String[] args)
        {
                Ticked t=new Ticked(/*"卖票"*/);
                Thread t1=new Thread(t);
                Thread t2=new Thread(t);
                Thread t3=new Thread(t);
                Thread t4=new Thread(t);
                t1.start();
                t2.start();
                t3.start();
                t4.start();
        }
}

这段代码 我想要自己设置线程的名称 如何实现?注释那部分是我自己瞎搞的 可以忽略
求各路大神指点

4 个回复

倒序浏览
t1.setName("窗口一"); ?
回复 使用道具 举报
突然世界晴 发表于 2015-4-12 10:43
t1.setName("窗口一"); ?

试了一下 不太行
回复 使用道具 举报
Thread t1=new Thread(t,"窗口一");  试试
回复 使用道具 举报
突然世界晴 发表于 2015-4-12 11:04
Thread t1=new Thread(t,"窗口一");  试试

可以了 谢谢啦~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马