我正在开发一个Android应用程序,我需要在线程上工作,这是一个众所周知的Java概念。我在我的应用程序中有一个名为“thrd”的线程,我想在IF ... Else循环的else部分调用它。
任何人都可以告诉我如何在循环中调用该线程,抱歉,就使用Java或Android而言,我是全新的。
感谢Advance的帮助, 大卫
答案 0 :(得分:0)
线程只是Java对象,因此您需要在要启动的线程上使用线程引用。我认为将这样的引用形式作为线程名称是不可能的(或者如果可能的话,这不是一个好主意)。以下是开始使用线程的代码示例:
// This class extends Thread class
BasicThread1 extends Thread {
// This method is called when the thread runs
public void run() {
// Your code here
}
}
// Create and start the thread
Thread thread = new BasicThread1();
thread.start();