java runnable 内部类_java 10-05 优先级 runnable 内部类

795a6757245d3e451946b2b1f39236b0.png线程优先级

priorty

---------------------------------------------------------

1-10:从低到高

默认是5

------------------------------------------------------------------

class TenDemo5{

public static void main(String[] agrs) {

Thread T=Thread.currentThread();

//修改主线程的名称

T.setName("this is my thread");

String name= T.getName();

System.out.println("name="+ name);

//设置当前优先级

T.setPriority(10);

//当前的优先级

int p=T.getPriority();

System.out.println(p);

}

}

Runnable

-------------------------------------------------------

/* class TenRunnable{

public static void main(String[] agrs) {

//main 函数孵化新线程

Myrunnable r =new Myrunnable();

new Thread(r).start();

}

}

//implements 实现接口 Runnable实现类  降低耦合

class Myrunnable implements Runnable{

public void run(){

while(true){

System.out.println("Hello");

}

}

} */

//匿名类

class TenRunnable{

public static void main(String[] agrs) {

// new Thread(new Runnable()

// {

// public void run (){

// System.out.println("Hello");

// }

// }).start();

new Thread(){

public void run (){

System.out.println("Hello");

}

}.start();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值