黑马程序员技术交流社区
标题:
线程问题,出现莫名其妙的错误
[打印本页]
作者:
红茶2331
时间:
2013-11-14 11:20
标题:
线程问题,出现莫名其妙的错误
class compute implements Runnable
{
int i = 0;
public void run()
{
for(int i = 0; i < 10; i++)
{
System.out.println("this:"+i);
}
}
}
class compute1 implements Runnable
{
public void run()
{
for(int i = 0; i < 10; i++)
{
System.out.println(i);
}
}
}
class threadtest
{
public static void main(String[] args)
{
compute c = new compute();
compute1 c1 = new compute1();
Thread t = new Thread(c);
Thread t1 = new Thread(c1);
t.start();
t1.start();
System.out.println("Hello World!");
}
}
复制代码
编译的时候为什么会出现找不到符号,Thread t1 = new Thread(compute)的错误,我两个类都实现Runnable接口了啊
作者:
wjj410830911
时间:
2013-11-14 11:27
this:0
Hello World!
this:1
this:2
this:3
this:4
this:5
this:6
this:7
0
1
2
3
4
5
6
7
8
9
this:8
this:9
复制代码
没有啊 我打印成功了啊。。。。没有任何报错
作者:
红茶2331
时间:
2013-11-14 13:37
本帖最后由 红茶2331 于 2013-11-14 13:38 编辑
1.jpg
(451.46 KB, 下载次数: 13)
下载附件
2013-11-14 13:38 上传
我编译就出这个问题了
作者:
红茶2331
时间:
2013-11-14 13:39
很奇怪啊,我在别的电脑上编译也出现这个问题
作者:
Weix1992
时间:
2013-11-14 13:46
我也运行成功了,在检查一下环境问题吧
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2