为例:
new Thread(new Runnable() { public void run() { while(condition) { *code that must not be interrupted* *some more code* } } }).start(); SomeOtherThread.start(); YetAntherThread.start();
如何确保不会中断的代码不会中断?
解决方法
您不能 – 至少不能使用正常的Java,在正常的非实时操作系统上运行.即使其他线程不会中断你的,其他进程也可能这样做.基本上,您将无法保证在完成操作之前,您将获得一个cpu.如果你想要这样的保证,你应该使用Java实时系统.我不知道是否知道这肯定会提供你想要的设施.
最好的做法是首先避免这个要求.