你可以做这样的事情,不是最好的,但是它可以给你一些想法
创建一个线程调度程序类,并从主类中调用它
public class ThreadDispatcher implements Runnable {public ThreadDispatcher() {}public void run() { //call the method related heavy process here }}
在你的主要班级可能就是这样
Thread thread = new Thread(new ThreadDispatcher()); thread.start(); sleep(100);
赶上InterruptedException ex。
并检查Java线程示例。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)