请各位JAVA编程高手帮我个忙。我编的一个程序出现错误。但不知道错那里了。请你们指正。

publicclassexmm{publicstaticvoidmain(Stringagrs[]){newframe();}}classframeimplementsR... public class exmm
{ public static void main(String agrs[])
{ new frame();
}
}
class frame implements Runnable
{ Thread student=new Thread(this);
Thread teacher=new Thread(this);
student.start();
teacher.start();
public void run()
{ if(Thread.currentThread()==student)
{ try
{System.out.println("张三正在睡觉不听课");
Thread.sleep(1000*60*60);
}
catch(InterruptedException e)
{ System.out.println("张三被老师吵醒");
}
System.out.println("张三开始听课");
}
else if(Thread.currentThread()==teacher)
{ try { System.out.println("上课!");
Thread.sleep(500);
}
catch(InterruptedException e){}
student.interrupt();
}

}
}
展开
 我来答
liuyang7792
2011-11-04 · TA获得超过158个赞
知道小有建树答主
回答量:162
采纳率:0%
帮助的人:193万
展开全部
//错误已改正
public class exmm {
public static void main(String agrs[]) {
new frame();
}
}
class frame implements Runnable {
Thread student=new Thread(this);
Thread teacher=new Thread(this);
frame(){
student.start();
teacher.start();
}
public void run() {
if(Thread.currentThread()==student){
try{
System.out.println("张三正在睡觉不听课");
Thread.sleep(1000*60*60);
}
catch(InterruptedException e){
System.out.println("张三被老师吵醒");
}
System.out.println("张三开始听课");
}
else
if(Thread.currentThread()==teacher){
try {
System.out.println("上课!");
Thread.sleep(500);
}
catch(InterruptedException e){}
student.interrupt();
}
}
}
//运行结果
run:
张三正在睡觉不听课
上课!
张三被老师吵醒
张三开始听课
成功生成(总时间:0 秒)
nggno1
2011-11-04 · TA获得超过351个赞
知道小有建树答主
回答量:768
采纳率:0%
帮助的人:416万
展开全部
1 类名首字母请大写
2 student.start();
teacher.start();
这怎么能写类里? 写方法里
3 需求不明确。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式