手记

多线程-1

一、线程的含义和作用。

线程是CPU性能分配的的最小单位,合理利用多线程可以提高CPU的执行效率。

二、总结使用Thread类创建线程的方法。

1、类继承Thread

2、重写run方法

3、通过start方法启动线程

列子:

public class TestCreateThread extends Thread{

    @Override

    public void run(){

        //当启动线程时执行的是run方法里面的代码

        for(int i=0;i<5;i++){

            System.out.println(i);

        }

    }

    @Test

    public void testThread(){

        TestCreateThread thread = new TestCreateThread();

        //启动线程

        thread.start();

    } 

}

0人推荐
随时随地看视频
慕课网APP