Android多线程
第一种:用Thread类创建线程
public class ThreadDemo1
{
public static void main(String args[])
{
new TestThread().start();//调TestThread类的start函数(从Thread类继承而来的)
while(true)
{
System.out.println("main thread is running");
}
}
}
class TestThread extends Thread
{
public void run()
{
while(true)
{
System.out.println(Thread.currentThread().getName() "is running");
}
}
}
第二种:使用Runnable接口创建多线程
public class ThreadDemo2
{
public static void main(String args[])
{
TestThread tt = new TestThread();//创建TestThread类的一个实例
Thread t = new Thread(tt);//创建一个Thread类的实例
t.start();//使线程进入Runnable状态
while(true)
{
System.out.println("main thread is running");
}
}
}
class TestThread implements Tunnable
{
public void run()//线程的代码段,当执行start()时,线程从此处开始执行
{
while(true)
{
System.out.println(Thread.currentThread().getName()"is running");
}
}
}
结论:第二种方法比较好。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。