| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 5058 人关注过本帖
标题:Thread的run和start
取消只看楼主 加入收藏
kingyor
Rank: 1
等 级:新手上路
帖 子:66
专家分:0
注 册:2006-6-4
收藏
 问题点数:0 回复次数:0 
Thread的run和start
"启动一个线程,不是直接调用Thread子类对象的run方法,而是调用Thread子类对象的start(从Thread类中继承的)方法"
问题是下面的例子中start方法找不到,是不是还要再去定义一个start方法,如果那样的话为什么不直接调用run呢?

public class ThreadDemo
{
public static void main(String args[])
{
new TestThread().start(); // 实际上是调用了线程类的run()方法
//编译时找不到这个method start()
//循环输出
while(true)
{
System.out.println("main thread is running");
}
}
}
class TestThread
{
public void run()
{
while(true)
{
System.out.println(Thread.currentThread().getName() +
" is running");
}
}
}
搜索更多相关主题的帖子: Thread start run 
2006-12-19 08:49
快速回复:Thread的run和start
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015721 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved