java.lang.OutOfMemoryError: unable to create new native thread 博客分类: Javajava swing 初始化线程过多
程序员文章站
2024-02-24 08:03:16
...
运行java swing程序时,报错:
xception in thread "Thread-38" java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start0(Thread.java) at java.lang.Thread.start(Thread.java:714) at java.util.Timer.<init>(Timer.java:160) at java.util.Timer.<init>(Timer.java:132) at com.swing.menu.MenuUtil2$1.<init>(MenuUtil2.java:346) at com.swing.menu.MenuUtil2.setPopupMenu(MenuUtil2.java:344) at com.swin
报错的行:
原因:创建的线程过多.
解决方法:
不要在初始化对象时创建线程: