首页 > 其他分享 >线程状态转换?创建线程的几种方式?线程如何停止?

线程状态转换?创建线程的几种方式?线程如何停止?

时间:2024-11-14 19:30:11浏览次数:1  
标签:thread Thread 创建 void 几种 线程 new public

新建(New)

NEW:初始状态,线程被构建,但是还没有调用 start()方法。

可运行(Runnable)

RUNNABLE:可运行状态,可运行状态可以包括:运行中状态和就绪状态。也就是 可能正在运行,也可能正在等待 CPU 时间片。

包含了操作系统线程状态中的 Running 和 Ready。

阻塞(Blocking)

等待获取一个排它锁,如果其线程释放了锁就会结束此状态。

new Thread(new BlockedDemo(),"Blocked-Demo-1").start();
new Thread(new BlockedDemo(),"Blocked-Demo-2").start();

static class BlockedDemo extends Thread {
@Override
public void run() {
while (true) {
synchronized (BlockedDemo.class) {
try {
TimeUnit.SECONDS.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
}

无限期等待(Waiting)

等待其它线程显式地唤醒,否则不会被分配 CPU 时间片。

new Thread(() -> {
while (true) {
synchronized (Test5.class) {
try {
Test5.class.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
},"Waiting-Demo").start();

限期等待(Timed Waiting)

无需等待其它线程显式地唤醒,在一定时间之后会被系统自动唤醒。

调用 Thread.sleep() 方法使线程进入限期等待状态时,常常用“使一个线程睡眠”进行描述。

调用 Object.wait() 方法使线程进入限期等待或者无限期等待时,常常用“挂起一个线程”进行描述。

睡眠和挂起是用来描述行为,而阻塞和等待用来描述状态。

阻塞和等待的区别在于,阻塞是被动的,它是在等待获取一个排它锁。而等待是主动的,通过调用 Thread.sleep() 和 Object.wait() 等方法进入。

new Thread(() -> {
while (true) {
try {
TimeUnit.SECONDS.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}, "Time-Waiting-Demo").start();

死亡(Terminated)

可以是线程结束任务之后自己结束,或者产生了异常而结束。

创建线程的几种方式

有三种使用线程的方法:

实现 Runnable 接口;

实现 Callable 接口;

继承 Thread 类。

使用线程池

实现 Runnable 和 Callable 接口的类只能当做一个可以在线程中运行的任务,不是真正意义上的线程,因此最后还需要通过 Thread 来调用。可以说任务是通过线程驱动从而执行的。

继承 Thread 类

同样也是需要实现 run() 方法,因为 Thread 类也实现了 Runable 接口。

当调用 start() 方法启动一个线程时,虚拟机会将该线程放入就绪队列中等待被调度,当一个线程被调度时会执行该线程的 run() 方法。

public class MyThread extends Thread {
public void run() {
// ...
}
}

public static void main(String[] args) {
MyThread mt = new MyThread();
mt.start();
}

实现 Runnable 接口

需要实现 run() 方法。

通过 Thread 调用 start() 方法来启动线程。

public class MyRunnable implements Runnable {
public void run() {
// ...
}
}

public static void main(String[] args) {
MyRunnable instance = new MyRunnable();
Thread thread = new Thread(instance);
thread.start();
}

实现 Callable 接口

与 Runnable 相比,Callable 可以有返回值,返回值通过 FutureTask 进行封装。

public class MyCallable implements Callable {
public Integer call() {
return 123;
}
}

public static void main(String[] args) throws ExecutionException, InterruptedException {
MyCallable mc = new MyCallable();
FutureTask ft = new FutureTask<>(mc);
Thread thread = new Thread(ft);
thread.start();
System.out.println(ft.get());
}

或者可以使用线程池进行执行

MyCallable myCallable = new MyCallable();
ExecutorService executorService = Executors.newFixedThreadPool(1);
Future submit = executorService.submit(myCallable);
System.out.println(submit.get());

实现接口 VS 继承 Thread

实现接口会更好一些,因为:

Java 不支持多重继承,因此继承了 Thread 类就无法继承其它类,但是可以实现多个接口;

类可能只要求可执行就行,继承整个 Thread 类开销过大。

基础线程机制

Daemon

守护线程是程序运行时在后台提供服务的线程,不属于程序中不可或缺的部分。

当所有非守护线程结束时,程序也就终止,同时会杀死所有守护线程。

main() 属于非守护线程。因此如果设置这个,可以让子线程随着主线程的退出而退出

使用 setDaemon() 方法将一个线程设置为守护线程。

public static void main(String[] args) {
Thread thread = new Thread(new MyRunnable());
thread.setDaemon(true);
}

sleep()

Thread.sleep(millisec) 方法会休眠当前正在执行的线程,millisec 单位为毫秒。

sleep 的工作流程:

挂起线程并修改其运行状态

用 sleep()提供的参数来设置一个定时器

当时间结束定时器会触发,内核收到中断后修改线程的运行状态。就绪队列等待调度例如线程会被标志为就绪而进入就绪队列等待调度

sleep() 可能会抛出 InterruptedException,因为异常不能跨线程传播回 main() 中,因此必须在本地进行处理。线程中抛出的其它异常也同样需要在本地进行处理。

public void run() {
try {
Thread.sleep(3000);//并不意味着3秒后一定会执行,因为此时并不一定会将CPU资源分配给这个线程
} catch (InterruptedException e) {
e.printStackTrace();
}
}

sleep(0)的妙用

在线程中,调用 sleep(0)可以释放 cpu 时间,让线程马上重新回到就绪队列而非等待队列,sleep(0)释放当前线程所剩余的时间片(如果有剩余的话),这样可以让操作系统切换其他线程来执行,提升效率。

Thread.Sleep(0) 并非是真的要线程挂起 0 毫秒,意义在于这次调用 Thread.Sleep(0)的当前线程确实的被冻结了一下,让其他线程有机会优先执行。Thread.Sleep(0) 是你的线程暂时放弃 cpu,也就是释放一些未用的时间片给其他线程或进程使用,就相当于一个让位动作。其实就等同于 yield 的用法

yield()

对静态方法 Thread.yield() 的调用声明了当前线程已经完成了生命周期中最重要的部分,可以切换给其它线程来执行。该方法只是对线程调度器的一个建议,而且也只是建议具有相同优先级的其它线程可以运行。

public void run() {
Thread.yield();
}

线程停止

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();
}

A
B

原理

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;
    }
}

}

从源码来看,实际上 join 方法就是调用了 wait 方法来使得线程阻塞,一直到线程结束运行。注意到,join 方法前的 synchronized 修饰符,它相当于:

public final void join(long millis){
synchronized(this){
//代码块
}
}

也就是说加锁的对象即调用这个锁的线程对象,在 main()方法中即为 t1,持有这个锁的是主线程即 main()方法,也就是说代码相当于如下:

//t1.join()前的代码
synchronized (t1) {
// 调用者线程进入 t1 的 waitSet 等待, 直到 t1 运行结束
while (t1.isAlive()) {
t1.wait(0);
}
}
//t1.join()后的代码

也因此主线程进入等待队列,直到 t1 线程结束。

这里可能会有很多人会有疑惑,为什么 t1.wait 了,阻塞的不是 t1,而是主线程?

实际上,如果要阻塞 t1,那么就应该在 t1 的 run 方法里进行阻塞,如在 run 方法里写 wait();(当然还有 suspend 方法,这属于非 Java 层面,另说)

而这里的 wait 方法被调用以后,是让持有锁的线程进入等待队列,即主线程调用,因此 t1 线程并不会被阻塞,阻塞的是主线程。

也就是说,join 方法是一个同步方法,当主线程调用 t1.join()方法时,主线程先获得了 t1 对象的锁,随后进入方法,调用了 t1 对象的 wait()方法,使主线程进入了 t1 对象的等待池。

那么问题在于,这里只看到了 wait 方法,却并没有看到 notify 或者是 notifyAll 方法,那么主线程在那里被唤醒呢?

这里参考 jvm 的代码:

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();

}

其实是 jvm 虚拟机中存在方法 lock.notify_all(thread),在 t1 线程结束以后,会调用该方法,最后唤醒主线程。

所以简化一下,流程即:

wait() notify() notifyAll()

调用 wait() 使得线程等待某个条件满足,线程在等待时会被挂起,当其他线程的运行使得这个条件满足时,其它线程会调用 notify() 或者 notifyAll() 来唤醒挂起的线程。

它们都属于 Object 的一部分,而不属于 Thread。

只能用在同步方法 synchronized 或者同步控制块中使用,否则会在运行时抛出 IllegalMonitorStateExeception。

使用 wait() 挂起期间,线程会释放锁。这是因为,如果没有释放锁,那么其它线程就无法进入对象的同步方法或者同步控制块中,那么就无法执行 notify() 或者 notifyAll() 来唤醒挂起的线程,造成死锁。

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());
}

before
after

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 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();
    }
}

}

public static void main(String[] args) {
ExecutorService executorService = Executors.newCachedThreadPool();
AwaitSignalExample example = new AwaitSignalExample();
executorService.execute(() -> example.after());
executorService.execute(() -> example.before());
}

before
after

线程中的异常处理

Runnable 中异常如何被吞掉

Runnable 接口的 run() 方法不允许抛出任何被检查的异常(checked exceptions),只能处理或抛出运行时异常(unchecked exceptions)。当在 run() 方法内发生异常时,如果没有显式地捕获和处理这些异常,它们通常会在执行该 Runnable 的线程中被“吞掉”,即异常会导致线程终止,但不会影响其他线程的执行。

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);
}
}
}

解决方案:

1、在 run 方法中显示的捕获异常

public void run() {
try {
// 可能抛出异常的代码
} catch (Exception e) {
// 记录日志或处理异常
throw new RuntimeException(e);
}
}

2、为创建的线程设置一个UncaughtExceptionHandler

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);
}
});

3、使用Callable代替Runnable,Callable的call方法允许抛出异常,然后可以通过提交给ExecutorService返回的Future来捕获和处理这些异常

ExecutorService executor = Executors.newFixedThreadPool(1);
Future<?> future = executor.submit(() -> {
// 可能抛出异常的代码
});

try {
future.get(); // 这里会捕获到Callable中的异常
} catch (ExecutionException e) {
Throwable cause = e.getCause(); // 获取原始异常
}

Callable 中异常如何被吞掉

class MyCallable implements Callable {
@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 ");
}

}

运行结果

=========> main start
===> 开始执行callable
=========> main end

源码如下:

public Future submit(Callable task) {
if (task == null) throw new NullPointerException();
RunnableFuture ftask = newTaskFor(task);
execute(ftask);
return ftask;
}

protected RunnableFuture newTaskFor(Callable callable) {
return new FutureTask(callable);
}

RunableFuture 是个接口,但是它继承了 Runnable 接口 , 实现类是 FutureTask ,因此就需要看下 FutureTask 里的 run 方法 是不是和 构造时的 Callable 有关系:

public void run() {
// 状态不属于初始状态的情况下,不进行后续逻辑处理
// 那也就是run 方法只能执行一次
if (state != NEW ||
!UNSAFE.compareAndSwapObject(this, runnerOffset,
null, Thread.currentThread()))
return;
try {
Callable c = callable;
if (c != null && state == NEW) {
V result;
//
boolean ran;
try {
// 执行 Callable 里的 call 方法 ,将结果存入result变量中
result = c.call();
ran = true;
} catch (Throwable ex) {
result = null;
ran = false;
// call 方法异常 , 记录下异常结果
setException(ex);
}
// call 方法正常执行完毕 ,进行结果存储
if (ran)
set(result);
}
} finally {
// runner must be non-null until state is settled to
// prevent concurrent calls to run()
runner = null;
// state must be re-read after nulling runner to prevent
// leaked interrupts
int s = state;
if (s >= INTERRUPTING)
handlePossibleCancellationInterrupt(s);
}
}

接下来就要看,如果存储正常结果的set(result)方法 和存储异常结果的 setException(ex) 方法

protected void setException(Throwable t) {
if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
outcome = t;
UNSAFE.putOrderedInt(this, stateOffset, EXCEPTIONAL); // final state
finishCompletion();
}
}

protected void set(V v) {
if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
outcome = v;
UNSAFE.putOrderedInt(this, stateOffset, NORMAL); // final state
finishCompletion();
}
}cfeg.xpdahan.com,cfeg.yubingame.com,cfeg.lhfeshop.com
cfeg.juwanci.com,cfeg.gztdzk.com

这两个代码都做了一个操作,就是将正常结果result 和 异常结果 exception 都赋值给了 outcome 这个变量 。

接着再看下 future 的 get 方法

//这里有必须看下Task的结束时的状态,如果正常结束,状态为 NORMAL , 异常结果,状态为EXCEPTIONAL 。 看下几个状态的定义,如下:
private volatile int state;
private static final int NEW = 0;
private static final int COMPLETING = 1;
private static final int NORMAL = 2;
private static final int EXCEPTIONAL = 3;
private static final int CANCELLED = 4;
private static final int INTERRUPTING = 5;
private static final int INTERRUPTED = 6;

/**

  • @throws CancellationException {@inheritDoc}
    */
    public V get() throws InterruptedException, ExecutionException {
    int s = state;
    // NORMAL(2) 、EXCEPTIONAL(3) 都大于 COMPLETING(1),所以Task结束之后,不会走该if
    if (s <= COMPLETING)
    s = awaitDone(false, 0L);
    // 重点: 返回结果
    return report(s);
    }

private V report(int s) throws ExecutionException {
// 之前正常结果或者异常都存放在Object outcomme 中了
Object x = outcome;
// 正常返回
if (s == NORMAL)
return (V)x;
// EXCEPTIONAL(3) 小于 CANCELLED(4) ,所以不会走该if分支,直接后续的throw 抛异常的逻辑
if (s >= CANCELLED)
throw new CancellationException();
// 不等于NORMAL 且 大于等于 CANCELLED , 再结合 调用 report(int s ) 之前也做了state 的过滤
//到这一步,那只能是EXCEPTIONAL(3)
throw new ExecutionException((Throwable)x);
}
cfeg.iyitiyu.com,cfeg.tcq0.com,cfeg.xwtcfs.com
cfeg.hgyb0831.com,cfeg.bochendoor.com

因此可以通过 get 方法获取到异常结果

文章转载自:Seven

原文链接:https://www.cnblogs.com/seven97-top/p/18430315

体验地址:http://www.jnpfsoft.com/?from=infoq

标签:thread,Thread,创建,void,几种,线程,new,public
From: https://www.cnblogs.com/bkbk1234/p/18546632

相关文章

  • EBS:物料搬运单查看人限制(创建人栏位)
    Appliesto:OracleInventoryManagement-Version:11.5.9to12.0.0-Release:11.5to12.2Informationinthisdocumentappliestoanyplatform.FORM:INVTOMAI.FMB-ResponseCenterSymptomsIntheMoveOrdersform(INVTOMAI),whenusingtheFindfunction,the......
  • 如何创建ANT DESIGN PRO框架的精简版
    react的框架ANTDESIGNPRO如何不通过下载来创建:1.按住键盘window+R打开面板并输入powershell2.打开过后我先切到D盘(尽量不要放在C盘里创建)3.然后先输入这个命令目的是 pro-cli来快速的初始化脚手架。npmi@ant-design/pro-cli-g4.输入这一行命令来创建文件名称......
  • python——多线程、多进程接口测试multiprocessing
    一、线程、进程的区别https://www.zhihu.com/question/25532384二、实际使用场景登录3个用户,然后用这3个用户的session,进行10个进程,或者10个线程的操作(因为登录后没有退出登录,也没有被其他地方登录挤掉账号,所以session在一段时间内有效。且当前系统允许使用同一个session进行多......
  • Linux线程
    线程1.1线程概述1.2线程常用API线程方法使用创建线程#include<pthread.h>intpthread_create(pthread_t*restricttidp,constpthread_attr_t*restrictattr,void*(*start_rtn)(void*),void*restrictarg);//返回值:若成功返回0,否则返回错误编号详情介绍:  ......
  • 原子类保证多线程环境下的数据安全的示例
    原子类保证多线程环境下的数据安全的示例 1、原子整型类保证多线程环境下的数据安全示例:packagecom.joyupx.cms.example.thread.concurrent.atomic;importlombok.extern.slf4j.Slf4j;importjava.util.concurrent.atomic.AtomicInteger;/***原子性操作*多线程......
  • Java线程的sleep和wait的区别
        在Java中,Thread.sleep()和Object.wait()都可以让线程暂停执行,但是它们的作用机制和使用场景是不同的。下面是这两个方法的主要区别:Thread.sleep(longmillis,intnanos)参数:millis 是毫秒数,nanos 是额外的纳秒数(0到999,999之间)。行为:当前线程将暂停执行至少......
  • IDEA如何创建web项目及tomcat设置等
    一、JavaEE插件启用1.在启动IDEA时,点击右下角并进入Plugins设置2.选择JavaEE相关插件,点击OK然后重启二、创建Web项目1.点击File->NewProject,点击JavaEnterprise,勾选webApplication。确保已选择正确的jdk2.输入项目名称和存放路径,点击Finish完成三、设置tomcat1.......
  • 如何在 HFSS 3D 布局中创建 cutout 子设计
    HFSS3DLayout中的切口子设计允许工程师有选择地提取和分析PCB布局中的特定部分。这种有针对性的方法可以加速仿真,简化复杂的计算,并提高设计和分析工作流程的整体效率。在本教程中,我将演示如何使用切口子设计功能在HFSS3DLayout中提取PCB的一部分。让我们开始吧!概述......
  • 【多线程奇妙屋】你听说过设计模式吗?软件开发中可全局访问一个对象的设计模式——单例
    本篇会加入个人的所谓鱼式疯言❤️❤️❤️鱼式疯言:❤️❤️❤️此疯言非彼疯言而是理解过并总结出来通俗易懂的大白话,小编会尽可能的在每个概念后插入鱼式疯言,帮助大家理解的.......
  • 数据库字段设置非空, phalcon创建数据验证不通过
    在使用phalcon的insert和update功能时,因为数据库所有的字段设置的都是NOTNULL,而phalcon的model在插入或更新之前会自动判断字段是否需要必填,因此导致有空字段时无法存入。开始遇到这问题时,想到两种解决方法:一、改数据库字段,把NOTNULL改为可以为空。但该数据库还得去找DBA......