zoukankan      html  css  js  c++  java
  • 015.5线程常见用法(面试题)

    内容:例子

    class ThreadTest 
    {
        public static void main(String[] args) 
        {
            /*
            new Thread(){
                public void run(){
                    for(int x=0; x<40; x++)
                    {
                        System.out.println(Thread.currentThread().getName()+"...X...."+x);
                    }
                }
            }.start();
            
            Runnable r= new Runnable(){
                public void run(){
                    for(int x=0; x<40; x++)
                    {
                        System.out.println(Thread.currentThread().getName()+"...Y...."+x);
                    }
                }
            };
            new Thread(r).start();
            
            for(int x=0; x<40; x++)
            {
                System.out.println(Thread.currentThread().getName()+"...Z...."+x);
            }
    
            System.out.println("Hello World!");
            */
            //面试题:
            new Thread(new Runnable()
            {
                public void run()
                {
                    System.out.println("runnable run");
                }
            }){
                public void run()
                {
                    System.out.println("subthread run");//执行。
                }
            }.start();
        }
    }
    /*
    class Thread 
    {
        private Runnable r;
        Thread(Runnable r)
        {
            this.r = r;
        }
        public void run()
        {
            if(r!=null)
            {
                r.run();
            }
        }
        public void start()
        {
            run();
        }
    }
    class SubThread extends Thread
    {
        public void run()
        {
            System.out.println("subthread run");
        }
    }
    
    Runnable r = new Runnable()
    {
        public void run()
        {
            System.out.println("runnable run");
        }
    }
    SubThread t = new SubThread(r);
    t.start();
    
    */
  • 相关阅读:
    solidworks中的一些标注尺寸的技巧
    SolidWorks 2-8草图绘制的一般过程
    SolidWorks 2-7 草图的约束【课程来自虎课网】
    SolidWorks 2-5 草图的编辑
    HTML 文本格式化实例--实体
    今天长进之redis的学习
    初步了解Quartz
    职场风云3
    内网穿透
    职场风云2
  • 原文地址:https://www.cnblogs.com/-nbloser/p/8661697.html
Copyright © 2011-2022 走看看