public class MyTask implements Runnable{ public void run(){ //execute your task } } new Thread(new MyTask()).start(); ...
確定! 回上一頁