美文网首页
java中的多线程

java中的多线程

作者: YOUNG_FAN | 来源:发表于2017-10-31 22:29 被阅读0次

    知识点:

    fyy_Image.png fyy_Image.png

    原理图:

    fyy_Image.png

    代码示例:

    /*
    进程
    多线程
    */
    class Demo extends Thread {
        
        public void run() {
            for (int x = 0;x<60;x++)
            System.out.println("demo run----"+x);
        }
    }
    
    class ThreadDemo {
    
        public static void main(String[] args) { // 主线程
            Demo d = new Demo();//创建好了一个线程
            d.start();//开启线程并执行该线程的run方法
            //d.run(); //仅仅是对对象调用方法。而线程创建了,并没有运行。执行是单线程顺序结构
            
            for (int x = 0;x<60;x++)
            System.out.println("hello world!-------"+x);
        }
    }
    

    dos下的输出结果:

    dos_Image.png

    相关文章

      网友评论

          本文标题:java中的多线程

          本文链接:https://www.haomeiwen.com/subject/fqbipxtx.html