java-me支持线程吗?

时间:2010-11-01 07:47:57

标签: java multithreading java-me

java-me支持线程吗?你能给我一个在另一个线程中执行函数的示例代码吗?

3 个答案:

答案 0 :(得分: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();

答案 1 :(得分:1)

是。即使是最小的连接受限设备配置has it。该页面有一个示例,您在桌面上找到的一些示例也将适用。

答案 2 :(得分:0)

如果您指的是J2ME,那么它确实支持线程。请参阅文章here