由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - FrameWork of Thread application 1
相关主题
ZT: 关于性爱的多线程问题研究(一)请问关于用threadPoolExecutor实现threadpool的问题?
问个Thread 的问题,java certificate里的再问一个今天的面试题
Can Java thread return a value?java ,wait ,notify notifyall
能这么 create thread 吗?一道java题
implements runable 和 extends threadwhat is the use of thread.yield()?
java的接口runnableNoThread concurrency
线程问题。好虫,exploit等大牛请进--关于htmlunit
另一个入门问题。core java多线程一般面试什么
相关话题的讨论汇总
话题: thread话题: framework话题: void话题: public
进入Java版参与讨论
1 (共1页)
g****y
发帖数: 323
1
This FrameWork will be used if you have
1.your own GUI updated part, not calling repaint().
2.Tough work, like lots of calculations
3.You want to be able to stop the thread.
Thread workHarder = new Thread() {
public void run() {
doTougherWork();
SwingUtilities.invokeLater( new Runnable () {
public void run() {
updateMyComponents(); // update the state of
component(s)
}
});
}
};
workHarder.start();
public void doT
1 (共1页)
进入Java版参与讨论
相关主题
core java多线程一般面试什么implements runable 和 extends thread
ThreadLocal 的一个 use casejava的接口runnable
请教一个多线程的问题线程问题。
问个关于thread的问题另一个入门问题。
ZT: 关于性爱的多线程问题研究(一)请问关于用threadPoolExecutor实现threadpool的问题?
问个Thread 的问题,java certificate里的再问一个今天的面试题
Can Java thread return a value?java ,wait ,notify notifyall
能这么 create thread 吗?一道java题
相关话题的讨论汇总
话题: thread话题: framework话题: void话题: public