1 Star 0 Fork 0

Java45_张奭/第四章 多线程

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MyThread09.java 915 Bytes
一键复制 编辑 原始数据 按行查看 历史
package hekh.duoxiancheng0926;
public class MyThread09 implements Runnable {
Thread t3 =Thread.currentThread();
public void run() {
Thread t1 =Thread.currentThread();
System.out.println("子线程名:"+t1.getName()+",优先级:"+t1.getPriority());
System.out.println("**********修改默认优先级后*********");
System.out.println("主线程名:"+t3.getName()+",优先级:"+t3.getPriority());
Thread t2 =Thread.currentThread();
t2.setPriority(1);
System.out.println("子线程名:"+t2.getName()+",优先级:"+t2.getPriority());
}
public static void main(String[] args) {
Thread t = new Thread(new MyThread09());
System.out.println("**********显示默认优先级*********");
System.out.println("主线程名:"+Thread.currentThread().getName()+",优先级:"+t.getPriority());
Thread t3 =Thread.currentThread();
t3.setPriority(10);
t.start();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangshi66/DiSiZhang-DuoXianCheng.git
[email protected]:zhangshi66/DiSiZhang-DuoXianCheng.git
zhangshi66
DiSiZhang-DuoXianCheng
第四章 多线程
master

搜索帮助