如何设置线程运行的时间

发布于 2022-09-06 07:30:31 字数 109 浏览 16 评论 0

前辈们好!问题如下:

有一个线程,给他规定执行用时最大时间,如果他执行的时间超过最大时间,就结束这个线程,代码该怎么写呢,
前辈们给指导指导,谢谢啦

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拍不死你 2022-09-13 07:30:31
    Thread thread = new Thread(new Runnable() {
        @Override
        public void run() {
            try {
                System.out.println(Thread.currentThread());
                Thread.sleep(6000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    });
    
    System.out.println(Thread.currentThread());
    thread.start();
    TimeUnit.SECONDS.timedJoin(thread, 3);
    
    if (thread.isAlive()) {
        thread.interrupt();
        throw new TimeoutException("Thread did not finish within timeout");
    }

TimeUnit 有一个方法 timedJoin,如果线程未在指定时间运行完,或者指定时间内运行结束,代码会向下走,这时使用 isAlive 判断是否执行结束。

蹲在坟头点根烟 2022-09-13 07:30:31

上面的代码有些问题,并没能真正结束线程。稍微改下就可以了

Thread thread = new Thread(new Runnable() {
        @Override
        public void run() {
            try {
                System.out.println(Thread.currentThread());
                Thread.sleep(6000);
            } catch (InterruptedException e) {
                e.printStackTrace();
                **return;**
            }
            System.out.println("任务继续执行..........");
        }
    });
    
    System.out.println(Thread.currentThread());
    thread.start();
    TimeUnit.SECONDS.timedJoin(thread, 3);
    
    if (thread.isAlive()) {
        thread.interrupt();
        throw new TimeoutException("Thread did not finish within timeout");
    }

如果,不加return,将会输出"任务继续执行.........."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文