我试图制作 2个帖子。
每个线程都可以中断另一个线程,两个线程不能同时运行。
我尝试使用Thread.interrupt()函数,但这不会在Thread内部触发异常。
如何随时停止正在运行的线程?我只找到涉及睡眠线程或神话的解决方案,Thread.Interrupt()触发异常,而不仅仅是一个标志。
val toTransparent: Thread = (object : java.lang.Thread() {
override fun run() {
try {
if (toOpaque.isAlive)
toOpaque.interrupt()
while (opacity > 0) {
sleep(1)
activityForUI.runOnUiThread() {
searchBarEmpresa_linearLayout.background.alpha = opacity
}
opacity--
}
} catch (e: InterruptedException) {
Thread.currentThread().interrupt()
return
}
}
})
val toOpaque: Thread = (object : Thread() {
override fun run() {
try {
if (toTransparent.isAlive)
toTransparent.interrupt()
while (opacity < 255) {
sleep(1)
activityForUI.runOnUiThread() {
searchBarEmpresa_linearLayout.background.alpha = opacity
}
opacity++
}
} catch (e: InterruptedException) {
Thread.currentThread().interrupt()
return
}
}
})
答案 0 :(得分:0)
从正在停止的线程外部调用Thread.Interrupt()
通常不是处理线程的好方法,因为它可能在一些中间状态下捕获线程,处理系统资源。
最好创建一些变量,如isThread1AllowedToRun
并检查其值:
while (isThread1AllowedToRun) {
...
Thread.sleep(20, 0);
}