[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[jfriends-ml 10553] Re: Swing の本
高橋(智)です。
P.26 に、こんなTopicがありました。うーん、頭いい。
---- 引用 -------------------
2.3.2 How do we build our own thread-safe methods?
Building our own thread-safe cases is quite easy. Here is a thread-safe
method template we can use to guarantee that a method's code only executes
in the event-dispatching thread:
public void doThreadSafeWork() {
if( SwingUtilities.isEventDispatchThread() ) {
//
// do all work here...
//
}
else {
Runnable callDoThreadSafeWork = new Runnable() {
public void run() {
doThreadSafeWork();
}
};
SwingUtilities.invokeLater(callDoThreadSafeWork);
}
}
---- 引用 -------------------
"TAKAHASHI, Tomohiro" wrote:
>
> "TAKAHASHI, Tomohiro" wrote:
> snip
> > 2003/2/1発売予定の
> > [Swing]
>
> この Swing ですが、ようやく手元に届きました。
> 今だと、通常24時間以内に配送されるようです。
> 確かに、読んでみると分かりやすくて、とても好印象。
>
> http://www.manning.com/sbe/
> http://www.amazon.co.jp/exec/obidos/ASIN/193011088X
--
高橋智宏
Java読書会( http://www.t3-jpn.com/bof/ )
T3-Japan( http://www.t3-jpn.com/ )