线程克制
stop方法
stop 方法固然可以克制线程,但它已经是不发起利用的废弃方法了,这一点可以通过 Thread 类中的源码发现,stop 源码如下:
stop 方法是被 @Deprecated 修饰的不发起利用的逾期方法,而且在解释的第一句话就分析确 stop 方法为非安全的方法。
缘故起因在于它在停止一个线程时会逼迫停止线程的实验,不管run方法是否实验完了,而且还会开释这个线程所持有的全部的锁对象。这一征象会被别的由于哀求锁而壅闭的线程看到,使他们继承向下实验。这就会造成数据的差别等。
比如银行转账,从A账户向B账户转账500元,这一过程分为三步,第一步是从A账户中减去500元,如果到这时线程就被stop了,那么这个线程就会开释它所取得锁,然后其他的线程继承实验,如许A账户就莫名其妙的少了500元而B账户也没有收到钱。这就是stop方法的不安全性。
设置标记位
如果线程的run方法中实验的是一个重复实验的循环,可以提供一个标记来控制循环是否继承- class FlagThread extends Thread {
- // 自定义中断标识符
- public volatile boolean isInterrupt = false;
- @Override
- public void run() {
- // 如果为 true -> 中断执行
- while (!isInterrupt) {
- // 业务逻辑处理
- }
- }
- }
复制代码 但自界说停止标识符的标题在于:线程停止的不敷及时。由于线程在实验过程中,无法调用 while(!isInterrupt) 来判断线程是否为停止状态,它只能在下一轮运行时判断是否要停止当火线程,以是它停止线程不敷及时,比如以下代码:- class InterruptFlag {
- // 自定义的中断标识符
- private static volatile boolean isInterrupt = false;
- public static void main(String[] args) throws InterruptedException {
- // 创建可中断的线程实例
- Thread thread = new Thread(() -> {
- while (!isInterrupt) { // 如果 isInterrupt=true 则停止线程
- System.out.println("thread 执行步骤1:线程即将进入休眠状态");
- try {
- // 休眠 1s
- Thread.sleep(1000);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- System.out.println("thread 执行步骤2:线程执行了任务");
- }
- });
- thread.start(); // 启动线程
- // 休眠 100ms,等待 thread 线程运行起来
- Thread.sleep(100);
- System.out.println("主线程:试图终止线程 thread");
- // 修改中断标识符,中断线程
- isInterrupt = true;
- }
- }
复制代码 输出:我们渴望的是:线程实验了步调 1 之后,收到停止线程的指令,然后就不要再实验步调 2 了,但从上述实验结果可以看出,利用自界说停止标识符是没办法实现我们预期的结果的,这就是自界说停止标识符,相应不敷及时的标题。
interrupted停止
这种方式须要在while循环中判断利用
利用 interrupt 方法可以给实验任务的线程,发送一个停止线程的指令,它并不直接停止线程,而是发送一个停止线程的信号,把是否正在停止线程的自动权交给代码编写者。相比于自界说停止标识符而然,它能更及时的吸收到停止指令,如下代码所示:- public static void main(String[] args) throws InterruptedException {
- // 创建可中断的线程实例
- Thread thread = new Thread(() -> {
- while (!Thread.currentThread().isInterrupted()) {
- System.out.println("thread 执行步骤1:线程即将进入休眠状态");
- try {
- // 休眠 1s
- Thread.sleep(1000);
- } catch (InterruptedException e) {
- System.out.println("thread 线程接收到中断指令,执行中断操作");
- // 中断当前线程的任务执行
- break;
- }
- System.out.println("thread 执行步骤2:线程执行了任务");
- }
- });
- thread.start(); // 启动线程
- // 休眠 100ms,等待 thread 线程运行起来
- Thread.sleep(100);
- System.out.println("主线程:试图终止线程 thread");
- // 修改中断标识符,中断线程
- thread.interrupt();
- }
复制代码 输出:
从上述结果可以看出,线程在吸收到停止指令之后,立刻停止了线程,相比于上一种自界说停止标识符的方法来说,它能更及时的相应停止线程指令。
利用interruptedException
这种方式 不 须要在while循环中判断利用
如果线程由于实验join(),sleep大概wait()而进入壅闭状态,此时想要克制它,可以调用interrupt(),步调会抛出interruptedException非常。可以利用这个非常停止线程- public void run() {
- System.out.println(this.getName() + "start");
- int i=0;
- //while (!Thread.interrupted()){
- while (!Thread.currentThread().isInterrupted()){
- try {
- Thread.sleep(10000);
- } catch (InterruptedException e) {
- //e.printStackTrace();
- System.out.println("中断线程");
- break;//通过识别到异常来中断
- }
- System.out.println(this.getName() + " "+ i);
- i++;
- }
- System.out.println(this.getName() + "end");
- }
复制代码
Executor 的停止利用
调用 Executor 的 shutdown() 方法会等候线程都实验完毕之后再关闭,但是如果调用的是 shutdownNow() 方法,则相称于调用每个线程的 interrupt() 方法。
以下利用 Lambda 创建线程,相称于创建了一个匿名内部线程。- public static void main(String[] args) {
- ExecutorService executorService = Executors.newCachedThreadPool();
- executorService.execute(() -> {
- try {
- Thread.sleep(2000);
- System.out.println("Thread run");
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- });
- executorService.shutdownNow();
- System.out.println("Main run");
- }
复制代码- Main run
- java.lang.InterruptedException: sleep interrupted
- at java.lang.Thread.sleep(Native Method)
- at ExecutorInterruptExample.lambda$main$0(ExecutorInterruptExample.java:9)
- at ExecutorInterruptExample$$Lambda$1/1160460865.run(Unknown Source)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
- at java.lang.Thread.run(Thread.java:745)
复制代码 如果只想停止 Executor 中的一个线程,可以通过利用 submit() 方法来提交一个线程,它会返回一个 Future 对象,通过调用该对象的 cancel(true) 方法就可以停止线程。- Future<?> future = executorService.submit(() -> {
- // ..
- });
- future.cancel(true);
复制代码 线程之间的协作
当多个线程可以一起工作去办理某个标题时,如果某些部分必须在别的部分之前完成,那么就须要对线程举行和谐。
join()
案例
在线程中调用另一个线程的 join() 方法,会将当火线程挂起,而不是忙等候,直到目的线程竣事。
对于以下代码,固然 b 线程先启动,但是由于在 b 线程中调用了 a 线程的 join() 方法,b 线程会等候 a 线程竣事才继承实验,因此末了可以大概包管 a 线程的输出先于 b 线程的输出。- public class JoinExample {
- private class A extends Thread {
- @Override
- public void run() {
- System.out.println("A");
- }
- }
- private class B extends Thread {
- private A a;
- B(A a) {
- this.a = a;
- }
- @Override
- public void run() {
- try {
- a.join();
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- System.out.println("B");
- }
- }
- public void test() {
- A a = new A();
- B b = new B(a);
- b.start();
- a.start();
- }
- }
复制代码- public static void main(String[] args) {
- JoinExample example = new JoinExample();
- example.test();
- }
复制代码 原理
- public final synchronized void join(long millis)
- throws InterruptedException {
- long base = System.currentTimeMillis();
- long now = 0;
- if (millis < 0) {
- throw new IllegalArgumentException("timeout value is negative");
- }
- if (millis == 0) {
- while (isAlive()) {//检查线程是否存活,只要线程还没结束,主线程就会一直阻塞
- wait(0);//这里的wait调用的本地方法。
- }
- } else {//等待一段指定的时间
- while (isAlive()) {
- long delay = millis - now;
- if (delay <= 0) {
- break;
- }
- wait(delay);
- now = System.currentTimeMillis() - base;
- }
- }
- }
复制代码 实在是jvm假造机中存在方法lock.notify_all(thread),在t1线程竣事以后,会调用该方法,末了叫醒主线程。
以是简化一下,流程即:
wait() notify() notifyAll()
调用 wait() 使得线程等候某个条件满足,线程在等候时会被挂起,当其他线程的运利用得这个条件满足时,别的线程会调用 notify() 大概 notifyAll() 来叫醒挂起的线程。
它们都属于 Object 的一部分,而不属于 Thread。
只能用在同步方法synchronized大概同步控制块中利用,否则会在运行时抛出 IllegalMonitorStateExeception。
利用 wait() 挂起期间,线程会开释锁。这是由于,如果没有开释锁,那么别的线程就无法进入对象的同步方法大概同步控制块中,那么就无法实验 notify() 大概 notifyAll() 来叫醒挂起的线程,造成死锁。- public final void join(long millis){
- synchronized(this){
- //代码块
- }
- }
复制代码- //t1.join()前的代码
- synchronized (t1) {
- // 调用者线程进入 t1 的 waitSet 等待, 直到 t1 运行结束
- while (t1.isAlive()) {
- t1.wait(0);
- }
- }
- //t1.join()后的代码
复制代码- static void ensure_join(JavaThread* thread) {
- Handle threadObj(thread, thread->threadObj());
- ObjectLocker lock(threadObj, thread);
- hread->clear_pending_exception();
- //这一句中的TERMINATED表示这是线程结束以后运行的
- java_lang_Thread::set_thread_status(threadObj(), java_lang_Thread::TERMINATED);
- //这里会清楚native线程,isAlive()方法会返回false
- java_lang_Thread::set_thread(threadObj(), NULL);
- //thread就是当前线程,调用这个方法唤醒等待的线程。
- lock.notify_all(thread);
- hread->clear_pending_exception();
- }
复制代码 wait() 和 sleep() 的区别
- wait() 是 Object 的方法,而 sleep() 是 Thread 的静态方法;
- wait() 会开释锁,sleep() 不会。
await() signal() signalAll()
java.util.concurrent 类库中提供了 Condition 类来实现线程之间的和谐,可以在 Condition 上调用 await() 方法使线程等候,别的线程调用 signal() 或 signalAll() 方法叫醒等候的线程。相比于 wait() 这种等候方式,await() 可以指定等候的条件,因此更加机动。
利用 Lock 来获取一个 Condition 对象。- public class WaitNotifyExample {
- public synchronized void before() {
- System.out.println("before");
- notifyAll();
- }
- public synchronized void after() {
- try {
- wait();
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- System.out.println("after");
- }
- }
复制代码- public static void main(String[] args) {
- ExecutorService executorService = Executors.newCachedThreadPool();
- WaitNotifyExample example = new WaitNotifyExample();
- executorService.execute(() -> example.after());
- executorService.execute(() -> example.before());
- }
复制代码- static void ensure_join(JavaThread* thread) {
- Handle threadObj(thread, thread->threadObj());
- ObjectLocker lock(threadObj, thread);
- hread->clear_pending_exception();
- //这一句中的TERMINATED表示这是线程结束以后运行的
- java_lang_Thread::set_thread_status(threadObj(), java_lang_Thread::TERMINATED);
- //这里会清楚native线程,isAlive()方法会返回false
- java_lang_Thread::set_thread(threadObj(), NULL);
- //thread就是当前线程,调用这个方法唤醒等待的线程。
- lock.notify_all(thread);
- hread->clear_pending_exception();
- }
复制代码 线程中的非常处置处罚
Runnable中非常怎样被吞掉
Runnable 接口的 run() 方法不允许抛出任何被查抄的非常(checked exceptions),只能处置处罚或抛出运行时非常(unchecked exceptions)。当在 run() 方法内发生非常时,如果没有显式地捕捉和处置处罚这些非常,它们通常会在实验该 Runnable 的线程中被“吞掉”,即非常会导致线程停止,但不会影响其他线程的实验。- public class AwaitSignalExample {
- private Lock lock = new ReentrantLock();
- private Condition condition = lock.newCondition();
- public void before() {
- lock.lock();
- try {
- System.out.println("before");
- condition.signalAll();
- } finally {
- lock.unlock();
- }
- }
- public void after() {
- lock.lock();
- try {
- condition.await();
- System.out.println("after");
- } catch (InterruptedException e) {
- e.printStackTrace();
- } finally {
- lock.unlock();
- }
- }
- }
复制代码 办理方案:
- 在run方法中表现的捕捉非常
- public static void main(String[] args) {
- ExecutorService executorService = Executors.newCachedThreadPool();
- AwaitSignalExample example = new AwaitSignalExample();
- executorService.execute(() -> example.after());
- executorService.execute(() -> example.before());
- }
复制代码 - 为创建的线程设置一个UncaughtExceptionHandler
- 利用Callable代替Runnable,Callable的call方法允许抛出非常,然后可以通过提交给ExecutorService返回的Future来捕捉和处置处罚这些非常
- public void uncaughtException(Thread t, Throwable e) {
- if (parent != null) {
- parent.uncaughtException(t, e);
- } else {
- Thread.UncaughtExceptionHandler ueh =
- Thread.getDefaultUncaughtExceptionHandler();
- if (ueh != null) {
- ueh.uncaughtException(t, e);
- } else if (!(e instanceof ThreadDeath)) {
- System.err.print("Exception in thread ""
- + t.getName() + "" ");
- e.printStackTrace(System.err);
- }
- }
- }
复制代码 Callable中非常怎样被吞掉
- public void run() {
- try {
- // 可能抛出异常的代码
- } catch (Exception e) {
- // 记录日志
或处理异常 - throw new RuntimeException(e);
- }
- }
复制代码 运行结果- Thread t = new Thread(() -> {
- int i = 1 / 0;
- }, "t1");
- t.setUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
- @Override
- public void uncaughtException(Thread t, Throwable e) {
- logger.error('---', e);
- }
- });
复制代码 源码如下:- ExecutorService executor = Executors.newFixedThreadPool(1);
- Future<?> future = executor.submit(() -> {
- // 可能抛出异常的代码
- });
- try {
- future.get(); // 这里会捕获到Callable中的异常
- } catch (ExecutionException e) {
- Throwable cause = e.getCause(); // 获取原始异常
- }
复制代码 RunableFuture 是个接口,但是它继承了Runnable 接口 , 实现类是 FutureTask ,因此就须要看下 FutureTask里的run方法 是不是和 构造时的Callable 有关系:- class MyCallable implements Callable<String> {
- @Override
- public String call() throws Exception {
- System.out.println("===> 开始执行callable");
- int i = 1 / 0; //异常的地方
- return "callable的结果";
- }
- }
- public class CallableAndRunnableTest {
- public static void main(String[] args) {
- System.out.println(" =========> main start ");
- ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(3, 5, 1, TimeUnit.SECONDS, new ArrayBlockingQueue<>(100));
- Future<String> submit = threadPoolExecutor.submit(new MyCallable());
- try {
- TimeUnit.SECONDS.sleep(2);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- System.out.println(" =========> main end ");
- }
- }
复制代码 接下来就要看,如果存储正常结果的set(result)方法 和存储非常结果的 setException(ex) 方法- =========> main start
- ===> 开始执行callable
- =========> main end
复制代码 这两个代码都做了一个利用,就是将正常结果result 和 非常结果 exception 都赋值给了 outcome 这个变量 。
接着再看下future的get方法- public <T> Future<T> submit(Callable<T> task) {
- if (task == null) throw new NullPointerException();
- RunnableFuture<T> ftask = newTaskFor(task);
- execute(ftask);
- return ftask;
- }
- protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
- return new FutureTask<T>(callable);
- }
复制代码 因此可以通过get方法获取到非常结果
免责声明:如果侵犯了您的权益,请联系站长及时删除侵权内容,谢谢合作!qidao123.com:ToB企服之家,中国第一个企服评测及软件市场,开放入驻,技术点评得现金. |