黑马程序员技术交流社区
标题:
线程-妈妈做菜
[打印本页]
作者:
HeiMa-黄倲江
时间:
2012-12-9 15:03
标题:
线程-妈妈做菜
不知道这样写 规范不规范呢
package it.HeiMa;
public class TestThrad {
public static void main(String[] args) {
Thread t = new Thread(new Me());
t.start();
}
public static void sop(Object obj){
System.out.println(obj);
}
}
class Me implements Runnable{
@Override
public void run() {
TestThrad.sop("妈妈正在煮菜!");
try {
throw new Exception("没盐");
} catch (Exception e) {
TestThrad.sop(e);
Thread t = new Thread(new S());
t.start();
try {
t.join();
} catch (InterruptedException e1) {
e1.printStackTrace();
}
}
TestThrad.sop("妈妈继续做菜");
}
}
class S implements Runnable{
@Override
public void run() {
try {
TestThrad.sop("我去买盐,稍等5秒");
Thread.sleep(5000);
TestThrad.sop("盐买回来了");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
作者:
刘文飞
时间:
2012-12-9 15:50
有些个乱,一般只try可能产生异常的或者与其紧密相关的语句,其他语句放到外面.
而且你这个煮饭只能煮一次啊.
作者:
汪磊
时间:
2012-12-9 19:14
有点乱啊
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2