创建线程的5种方法

文章详细介绍了在Java中创建线程的五种方法:1)继承Thread类并重写run方法;2)实现Runnable接口并创建Thread对象;3)继承Thread类使用匿名内部类;4)实现Runnable接口使用匿名内部类;5)使用lambda表达式创建线程。
摘要由CSDN通过智能技术生成

1. 继承 Thread, 重写 run

public class Demo1 {
    public static void main(String[] args) {
        MyThread myThread = new MyThread();
        myThread.start();

    }

}

//继承Thread,创建线程
class MyThread extends Thread{
    @Override
    public void run() {
        System.out.println("这是zjm创建的继承自Thread的线程");
    }
}

 2. 实现 Runnable, 重写 run


public class Demo2 {
    public static void main(String[] args) {
        MyRunnable myRunnable = new MyRunnable();

        //创建线程,并将myRunnable作为参数传入
        Thread thread = new Thread(myRunnable);
        thread.start();


    }
}


class MyRunnable implements Runnable {
    @Override
    public void run() {
        while (true) {
            System.out.println("这是zjm创建的实现了Runnable接口的线程");


            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

    }
}

3. 继承 Thread, 重写 run, 使用匿名内部类

public class Demo3 {
    public static void main(String[] args) {
        Thread thread = new Thread(){
            @Override
            public void run() {
                while (true) {
                    System.out.println("这是zjm创建的继承Thread,重写run,使用匿名内部类的创建线程的方式");

                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        };


        thread.start();
    }
}

4. 实现 Runnable, 重写 run, 使用匿名内部类

public class Demo4 {
    public static void main(String[] args) {
        Thread thread = new Thread(new Runnable() {
            @Override
            public void run() {
                while (true) {
                    System.out.println("这是zjm实现的 实现Runnable接口,重写Run,使用匿名内部类的创建现成的方式");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        });

        thread.start();
    }
}

5. 使用 lambda 表达式

public class Demo5 {
    public static void main(String[] args) {
        Thread thread = new Thread(() -> {
            while(true) {
                System.out.println("这是zjm实现的通过lambda表达式创建线程的方式");
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }

        });

        thread.start();
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值