JAVA基础知识之多线程——控制线程

时间:2022-09-22 20:57:23

join线程

在某个线程中调用其他线程的join()方法,就会使当前线程进入阻塞状态,直到被join线程执行完为止。join方法类似于wait, 通常会在主线程中调用别的线程的join方法,这样可以保证在所有的子线程执行结束之后在主线程中完成一些统一的步骤。
下面是一个例子,

package threads;

public class JoinThread extends Thread {
public JoinThread(String name) {
super(name);
} public void run() {
for(int i=0; i<20; i++) {
System.out.println(getName()+" "+i);
}
} public static void main(String[] args) throws InterruptedException {
new JoinThread("new Thread-1").start();
for (int i=0; i<50; i++) {
if(i==20){
JoinThread jt = new JoinThread("new thread-2");
jt.start();
//main线程调用了jt线程的join方法,main线程
//必须等jt执行完之后才能继续执行
jt.join();
}
System.out.println(Thread.currentThread().getName()+" "+i);
}
} }

执行结果,可见当主线程中i=20时,主线程被阻塞了,测试thread-1和thread-2正在执行,一直到thread-2执行结束之后,主线程才继续执行

main 0
new Thread-1 0
main 1
new Thread-1 1
main 2
new Thread-1 2
main 3
new Thread-1 3
main 4
new Thread-1 4
main 5
new Thread-1 5
main 6
new Thread-1 6
main 7
new Thread-1 7
main 8
new Thread-1 8
main 9
new Thread-1 9
main 10
new Thread-1 10
main 11
new Thread-1 11
main 12
new Thread-1 12
main 13
new Thread-1 13
main 14
new Thread-1 14
main 15
new Thread-1 15
main 16
new Thread-1 16
main 17
new Thread-1 17
main 18
new Thread-1 18
main 19
new Thread-1 19
new thread-2 0
new thread-2 1
new thread-2 2
new thread-2 3
new thread-2 4
new thread-2 5
new thread-2 6
new thread-2 7
new thread-2 8
new thread-2 9
new thread-2 10
new thread-2 11
new thread-2 12
new thread-2 13
new thread-2 14
new thread-2 15
new thread-2 16
new thread-2 17
new thread-2 18
new thread-2 19
main 20
main 21
main 22
main 23
main 24
main 25
main 26
main 27
main 28
main 29
main 30
main 31
main 32
main 33
main 34
main 35
main 36
main 37
main 38
main 39
main 40
main 41
main 42
main 43
main 44
main 45
main 46
main 47
main 48
main 49

后台线程:setDaemon

后台线程有个特征就是,如果所有前台线程都死亡,后台线程会自动死亡。JVM的垃圾回收器就是一种典型的后台线程。Thread提供了一个isDaemon方法判断是否为后台线程。

下面是一个例子,注意必须在线程start之前设置(setDaemon(true))为后台线程。

package threads;

public class DaemonThread extends Thread {
public void run() {
for(int i=0; i<1000; i++) {
System.out.println(getName()+" "+i);
}
} public static void main(String[] args) {
DaemonThread t = new DaemonThread();
//必须在start之前设置成后台线程
t.setDaemon(true);
t.start();
for (int i=0; i<3; i++) {
System.out.println(Thread.currentThread().getName()+" "+i);
}
//main进程运行到此处时结束,后台进程也会随之结束
}
}

执行结果,可以看到子线程的i并没有累加到1000就结束了,因为子线程被设置成了后台线程,主线程先于子线程结束,子线程也就随之结束了

main 0
Thread-5 0
main 1
Thread-5 1
main 2
Thread-5 2
Thread-5 3
Thread-5 4
...
Thread-5 199
Thread-5 200
Thread-5 201
Thread-5 202

线程睡眠:sleep

sleep数Thread类的一个静态方法,让当前线程进入阻塞状态。

在sleep指定的时间到达之前,线程都不会获得执行机会,即使有可用的CPU执行片,因此sleep方法常常用来暂停线程。

sleep方法需要抛出一个异常。

下面是一个例子,

package threads;

import java.util.Date;

public class SleepThread {
public static void main(String[] args) throws InterruptedException {
for (int i=0; i<10; i++) {
System.out.println("time:" + new Date());
Thread.sleep(1000);
}
}
}

执行结果,

time:Wed Nov 16 12:00:58 CST 2016
time:Wed Nov 16 12:00:59 CST 2016
time:Wed Nov 16 12:01:00 CST 2016
time:Wed Nov 16 12:01:01 CST 2016
time:Wed Nov 16 12:01:02 CST 2016
time:Wed Nov 16 12:01:03 CST 2016
time:Wed Nov 16 12:01:04 CST 2016
time:Wed Nov 16 12:01:05 CST 2016
time:Wed Nov 16 12:01:06 CST 2016
time:Wed Nov 16 12:01:07 CST 2016

线程优先级 及 线程让步:yield

优先级

JAVA 使用setPriority改变线程优先级。JVM提供了三个常量可在不同平台使用,分别是MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY,当然也可以使用1。。10之类的数字,但是不同平台定义的数字不同,所以还是推荐用常量。

yield

yield也是Thread类的一个静态方法,它和sleep有些类似,都可以暂停当前线程,不同的是它不会让线程进入阻塞状态,而是直接进入就绪状态,让当前线程重新进入资源竞争中,此时只有优先级等于或者高于当前线程的其他线程才能获取CPU资源执行,否则被yield的线程将重新获取资源继续执行。

下面是一个例子,

package threads;

public class YieldThread extends Thread{
public YieldThread(String name) {
super(name);
} public void run() {
for ( int i = 0; i<50; i++) {
System.out.println(getName()+" "+i);
if (i == 20) {
Thread.yield();
}
}
} public static void main(String[] args) throws InterruptedException {
YieldThread yt1 = new YieldThread("thread-1");
yt1.setPriority(Thread.MAX_PRIORITY);
//yt1.setPriority(7);
yt1.start();
Thread.sleep(1); YieldThread yt2 = new YieldThread("thead-2 ");
yt2.setPriority(Thread.MIN_PRIORITY);
//yt2.setPriority(1); yt2.start();
}
}

执行结果,可以看到,因为thread-1优先级比thread-2高,所以无轮是thread-1调用了yield还是thread-2调用了yield,都是thread-1先抢到资源继续执行

thread-1 0
thread-1 1
thread-1 2
thread-1 3
thread-1 4
thread-1 5
thread-1 6
thread-1 7
thread-1 8
thread-1 9
thread-1 10
thread-1 11
thread-1 12
thread-1 13
thread-1 14
thread-1 15
thread-1 16
thread-1 17
thread-1 18
thread-1 19
thread-1 20
thread-1 21

thread-1 22
thread-1 23
thead-2 0
thread-1 24
thead-2 1
thread-1 25
thead-2 2
thread-1 26
thead-2 3
thread-1 27
thead-2 4
thread-1 28
thead-2 5
thread-1 29
thead-2 6
thread-1 30
thead-2 7
thread-1 31
thead-2 8
thread-1 32
thead-2 9
thread-1 33
thead-2 10
thread-1 34
thead-2 11
thread-1 35
thead-2 12
thread-1 36
thead-2 13
thread-1 37
thead-2 14
thread-1 38
thead-2 15
thread-1 39
thead-2 16
thread-1 40
thead-2 17
thread-1 41
thead-2 18
thread-1 42
thead-2 19
thread-1 43
thead-2 20
thread-1 44

thead-2 21
thead-2 22
thread-1 45
thead-2 23
thread-1 46
thead-2 24
thead-2 25
thread-1 47
thead-2 26
thread-1 48
thead-2 27
thread-1 49
thead-2 28
thead-2 29
thead-2 30
thead-2 31
thead-2 32
thead-2 33
thead-2 34
thead-2 35
thead-2 36
thead-2 37
thead-2 38
thead-2 39
thead-2 40
thead-2 41
thead-2 42
thead-2 43
thead-2 44
thead-2 45
thead-2 46
thead-2 47
thead-2 48
thead-2 49

  

  

JAVA基础知识之多线程——控制线程的更多相关文章

  1. Java基础知识(多线程和线程池)

    新建状态: 一个新产生的线程从新状态开始了它的生命周期.它保持这个状态直到程序 start 这个线程. 运行状态:当一个新状态的线程被 start 以后,线程就变成可运行状态,一个线程在此状态下被认为 ...

  2. JAVA基础知识之多线程——线程组和未处理异常

    线程组 Java中的ThreadGroup类表示线程组,在创建新线程时,可以通过构造函数Thread(group...)来指定线程组. 线程组具有以下特征 如果没有显式指定线程组,则新线程属于默认线程 ...

  3. JAVA基础知识之多线程——线程通信

    传统的线程通信 Object提供了三个方法wait(), notify(), notifyAll()在线程之间进行通信,以此来解决线程间执行顺序等问题. wait():释放当前线程的同步监视控制器,并 ...

  4. JAVA基础知识之多线程——线程池

    线程池概念 操作系统或者JVM创建一个线程以及销毁一个线程都需要消耗CPU资源,如果创建或者销毁线程的消耗源远远小于执行一个线程的消耗,则可以忽略不计,但是基本相等或者大于执行线程的消耗,而且需要创建 ...

  5. java基础知识总结--多线程

    1.扩展Java.lang.Thread类 1.1.进程和线程的区别: 进程:每个进程都有自己独立的代码和数据空间(进程上下文),进程间的切换会有较大的开销,一个进程包含1~n个线程. 线程:同一类线 ...

  6. Java基础加强之多线程篇&lpar;线程创建与终止、互斥、通信、本地变量&rpar;

    线程创建与终止 线程创建 Thread类与Runnable接口的关系 public interface Runnable { public abstract void run(); } public ...

  7. JAVA基础知识之多线程——三种实现多线程的方法及区别

    所有JAVA线程都必须是Thread或其子类的实例. 继承Thread类创建线程 步骤如下, 定义Thead子类并实现run()方法,run()是线程执行体 创建此子类实例对象,即创建了线程对象 调用 ...

  8. JAVA基础知识系列---进程、线程安全

    1 相关概念 1.1 临界区 保证在某一时刻只有一个线程能访问数据的简便方法,在任意时刻只允许一个线程对资源进行访问.如果有多个线程试图同时访问临界区,那么在有一个线程进入后,其他所有试图访问临界区的 ...

  9. JAVA基础知识之多线程——线程同步

    线程安全问题 多个线程同时访问同一资源的时候有可能会出现信息不一致的情况,这是线程安全问题,下面是一个例子, Account.class , 定义一个Account模型 package threads ...

随机推荐

  1. 网站的SEO以及它和站长工具的之间秘密

    博客迁移没有注意 URL 地址的变化,导致百度和 google 这两只爬虫引擎短时间内找不到路.近段时间研究了下国内最大搜索引擎百度和国际最大搜索引擎google的站长工具,说下感受. 百度的站长工具 ...

  2. 利用SCORE法则来总结一次偷懒的单元测试过程

    最近遇到一个单元测试的问题,本周正好学个了一个SCORE法则,这里正好练练手应用此法则将问题的前因后果分享给大家. S:背景  代码要有单元测试,检测的标准就是统计代码的单元测试覆盖率,程序员需要达到 ...

  3. Matlab学习笔记 figure函数

    Matlab学习笔记 figure函数 matlab中的 figure 命令,能够创建一个用来显示图形输出的一个窗口对象.每一个这样的窗口都有一些属性,例如窗口的尺寸.位置,等等.下面一一介绍它们. ...

  4. 使用SCP在命令行传输文件

    下载远程服务器上的文件 scp   root@10.0.10.10:/home/user/download.txt  ./download.txt 上传文件到远程服务器 scp  ./upload.t ...

  5. win7突然无法启动(以前可以启动的,电脑是ubuntu&plus;win7双系统)

    这里 有个解决办法是将win7的menuentry里的chainloader +1改为ntldr /bootmgr,但是这个解决办法是基于把Boot Loader指定在/dev/sda1里了,即win ...

  6. suse下设置IP的两种方法

    /Files/yzhxhwt/DB_51aspx.rar 第一种SUSE Linux IP设置方法ifconfig eth0 192.168.1.22 netmask 255.255.255.0 up ...

  7. 在openshift上使用django&plus;postgresql

    openshift上用的是django 1.7,数据库选择的是postgresql 9.2 本地开发用的是sqlite3数据库,发布到openshift上后是没有数据的(本地的sqlite3数据库里的 ...

  8. MongoDB:通过mongodump【时间一致性】备份,快速创建secondary复制集节点——更精简的方式2

    该方式优点:快速通过mongodump初始化数据库,大大减少新的secondary节点从头开始初始化的风险:网络壅塞.oplog.rs过期.耗时太长等. 还原的关键:一致性mongodump备份 +  ...

  9. PO&lowbar;标准内部请购内部采购单抛转订单模组(流程)

    2014-06-03 Created By BaoXinjian

  10. Python 元祖的操作

    注意:元祖定义后不可修改,单个元祖后面必须加逗号,否则认为是字符串:tuple = ('apple',) 1.定义元祖 tuple = ('apple','banana','grape','orang ...