- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我研究java线程,一时看不懂:在下面的代码中
public class ThreadsTest {
public static void main(String[] args) throws Exception{
ExtendsThread extendsThread = new ExtendsThread();
Thread et = new Thread(extendsThread);
et.start();
Thread.sleep(1500);
ir.interrupt();
}
}
public class ExtendsThread extends Thread {
private Thread currentThread = Thread.currentThread();
public void run() {
while (!currentThread .isInterrupted()) {}
System.out.println("ExtendsThread " + currentThread().isInterrupted());
}
}
线程不会停止。但是如果在 ExtendsThread 类中我检查 while (!Thread.currentThread().isInterrupted())
线程停止。为什么 private Thread currentThread = Thread.currentThread();
不引用当前线程?
最佳答案
Why private
Thread currentThread = Thread.currentThread();
doesn't refer to current thread?
因为在这个变量初始化的时候,你在主线程上。 (该变量在您执行 ExtendsThread extendsThread = new ExtendsThread();
时初始化,这是从 main
完成的。)
但是,代码还有其他问题。
您正在检查 currentThread
而不是 this
线程的中断。因此,首先将 ExtendsThread
代码更改为:
class ExtendsThread extends Thread {
public void run() {
while (!isInterrupted()) {
}
System.out.println("ExtendsThread " + isInterrupted());
}
}
然后你把继承搞砸了。当您这样做时:
ExtendsThread extendsThread = new ExtendsThread();
Thread et = new Thread(extendsThread);
这意味着您将一个线程包裹在另一个线程中。 (因此,当您中断时,您正在中断外线程,但您正在检查内线程上的中断。)您可能只想摆脱包装线程,然后做
ExtendsThread et = new ExtendsThread();
这是您代码的完整工作版本:
public class ThreadsTest {
public static void main(String[] args) throws Exception{
ExtendsThread et = new ExtendsThread();
et.start();
Thread.sleep(1500);
et.interrupt();
}
}
class ExtendsThread extends Thread {
public void run() {
while (!isInterrupted()) {
}
System.out.println("ExtendsThread " + isInterrupted());
}
}
关于java - 为什么 isInterrupted() 给出 Thread.currentThread().isInterrupted() 以外的结果(JAVA),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28628870/
我已经坚持了好几天了……很抱歉遇到这样的问题,但是我只是F#本身的初学者。由于关于类型提供程序的讨论很多,所以我决定建立一个类型提供程序并撰写一篇有关它的论文。当我开始时,我不知道什么是类型提供程序。
我正在开发LAN项目唤醒功能,但是我想控制局域网中计算机是否打开。但是我不想使用ICMP或WMI(我的网络上有DC)。那么,对于此问题,是否还有其他选择,例如“套接字连接”,请检查特定端口是否正在使用
我们有一个旧的VB6应用程序,该应用程序使用Crystal Reports XI生成打印报告。我们已经通过经验发现,如果Crystal Reports打印引擎选择了错误版本的 usp10.dll (W
我正在尝试获取有效的 Android 权限列表。我知道 http://developer.android.com/reference/android/Manifest.permission.html
嗨,我是 nginx 的新手,我试图在我的服务器(运行 Ubuntu 4)上设置它,它已经运行了 apache。 所以在我 apt-get install 它之后,我尝试启动 nginx。然后我收到这
如何在VB 6中检查对象的类型-除了'TypeName'之外,是否还有其他方法,因为无法通过'TypeName'进行检查,我希望使用类似QuichWatch窗口的方法。 最佳答案 对于对象变量,请使用
我的 JSP 应用程序中有一个错误。发布后我的 session 被清除: YAHOO.util.Connect.asyncRequest('POST', Url, callback, post
我是一名优秀的程序员,十分优秀!