2010-11-01 120 views

回答

2

Using Threads in J2ME Applications

實施例:

public class DoAnotherThing extends Thread { 
    public void run(){ 
    // here is where you do something 
    } 
} 

並運行它像這樣:

DoAnotherThing doIt = new DoAnotherThing(); 
doIt.start(); 
+0

我可以有命名爲 'XYZ()' 的 'DoAnotherThing' 類的內部另一功能。如何啓動線程並調用函數。 – vishnu 2010-11-01 08:09:52

+0

@vishnu:看看這些主題:http://forums.sun.com/thread.jspa?threadID=5440136和http://www.codestyle.org/java/faq-Threads.shtml。可能會有幫助。 – NAVEED 2010-11-01 08:37:08

1

是的。即使是最小的連接受限設備配置has it。該頁面有一個示例,您可以在桌面上找到的一些示例也適用。

0

如果您指的是J2ME,那麼它支持線程化。看到一篇文章here