美文网首页
线程中止的方法

线程中止的方法

作者: 瓢鳍小虾虎 | 来源:发表于2020-12-29 09:23 被阅读0次

    使用interrupt,千万不要使用stop,会破坏程序原子性,
    interrupt使用interrupt不仅不会破坏程序原子性(加了同步锁synchronized的代码块,要么同时成功要么同时失败),还会抛出InterruptException让开发人员编写应对代码。


    image.png image.png
    image.png

    另一种中止线程的场景是需要while循环的场景,通过参数来控制什么时候中止,如下:


    image.png
    image.png

    相关文章

      网友评论

          本文标题:线程中止的方法

          本文链接:https://www.haomeiwen.com/subject/okmtoktx.html