4 4,调用Tread类的start()方法来运行新线程
[java] view plaincopy
class RunnableDemo implements Runnable
{
public void run()//使用新线程运行for循环中的代码
{
for (int x=0;x<10;x++ )
{
System.out.println("新线程"+x);//在控制台输出10条测试语句
}
}
public static void main(String[] args)
{
Runnable r = new RunnableDemo();//创建Runnable接口的对象
Thread t = new Thread(r);//利用Runnable接口的对象创建Thread类对象
t.start();//调用Thread类的start()方法来启动新线程
for (int x = 0;x<10 ;x++ )//在主线程中运行for循环中的代码
{
System.out.println("主线程"+x);//输出十条测试语句
}