码迷,mamicode.com
首页 > 编程语言 > 详细

java中的多线程

时间:2020-01-13 16:05:51      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:catch   ack   执行   mamicode   try   img   pac   技术   rri   

一个java程序实际上是一个JVM进程,JVM进程用一个主线程来执行main()方法,在main()方法内部,我们又可以启动多个线程。此外,JVM还有负责垃圾回收的其他工作线程等。

public class MyThread{
    public static void main(String[] args) {
        final Thread t = new testThread();
        t.start(); // 启动新线程
        System.out.println("start main thread!");

        
    }
}

class testThread extends Thread {
    @Override
    public void run() {
        System.out.println("start new thread!");
    }
}

运行测试

package pack_10;

public class testThread {
    public static void main(String[] args) {
        System.out.println("main start...");
        Thread t = new Thread() {
            public void run() {
                System.out.println("thread run...");
                try {
                    Thread.sleep(10);
                } catch (InterruptedException e) {}
                System.out.println("thread end.");
            }
        };
        t.start();
        try {
            Thread.sleep(20);
        } catch (InterruptedException e) {}
        System.out.println("main end...");
    }
}

运行结果

技术图片

java中的多线程

标签:catch   ack   执行   mamicode   try   img   pac   技术   rri   

原文地址:https://www.cnblogs.com/lipu12281/p/12187342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!