java中的多线程

2017-10-31  本文已影响0人  YOUNG_FAN

知识点:

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
上一篇下一篇

猜你喜欢

热点阅读