一段带着毒性的代码
Posted jjj1990
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一段带着毒性的代码相关的知识,希望对你有一定的参考价值。
import java.util.concurrent.CountDownLatch;
public class TestNativeOutOfMemoryError {
public static void main(String[] args) {
for (int i = 0;; i++) {
System.out.println("i = " + i);
new Thread(new HoldThread()).start();
}
}
}
class HoldThread extends Thread {
CountDownLatch cdl = new CountDownLatch(1);
public HoldThread() {
this.setDaemon(true);
}
public void run() {
try {
cdl.await();
} catch (InterruptedException e) {
}
}
}
以上是关于一段带着毒性的代码的主要内容,如果未能解决你的问题,请参考以下文章
asp.net core 3.0 新手问题:如何这段带“count” 和 group by的sql代码,怎么转成 linq的写法?