线程的入门

1、获取线程名

代码片段:

public class Main {
    public static void main(String[] args){
    	String threadName = Thread.currentThread().getName();
    	System.out.println(threadName);
    }
}

显示结果:main

2、获取线程id

主线程都为1

代码片段:

public class Main {
    public static void main(String[] args){
    	long threadID = Thread.currentThread().getId();
    	System.out.println(threadID);
    }
}

显示结果:1

3、修改线程名

代码片段:

public class Main {
    public static void main(String[] args){
    	Thread.currentThread().setName("新的线程名");
    	String threadName = Thread.currentThread().getName();
    	System.out.println(threadName);
    }
}

显示结果:新的线程名

4、让主方法休息

代码片段:

public class Main {
    public static void main(String[] args) throws InterruptedException{
    	Thread.currentThread().sleep(2000);
    	long threadID = Thread.currentThread().getId();
    	System.out.println(threadID);
    }

其中2000为2000毫秒也就是2秒,Thread.sleep(2000);也能得到同样的效果。

5、判断线程是否还在执行

代码片段:

public class Main {
    public static void main(String[] args) throws InterruptedException{
    	boolean isAlive = Thread.currentThread().isAlive();
    	System.out.println("主线程运行情况:"+isAlive);
    }
}

显示结果:主线程运行情况:true

6、让线程马上停止执行

代码片段:

public class Main {
    public static void main(String[] args){
    	Thread.currentThread().stop();
    	boolean isAlive = Thread.currentThread().isAlive();
    	System.out.println("主线程运行情况:"+isAlive);
    }
}

显示结果:没有显示任何结果,应为线程执行到stop();已然停止。

7、方法终止虚拟机

代码片段:

public class Main {
    public static void main(String[] args){
    	//Thread.currentThread().stop();
    	System.exit(0);//终止虚拟机
    	boolean isAlive = Thread.currentThread().isAlive();
    	System.out.println("主线程运行情况:"+isAlive);
    }
}

 

显示结果:没有显示任何结果,应为线程执行到System.exit(0)虚拟机已然停止,线程自然停止。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值