多线程
1、多线程中,一个对象调用start只能调用一次,调用多次将抛出异常(李兴华视频中说到的)
thread.start(); thread.start();//第二次调用将抛出异常
2、继承thread类不能实现资源共享
实现runnable接口可以实现资源共享
posted on 2014-04-07 17:45 crane_practice 阅读(110) 评论(0) 编辑 收藏 举报
1、多线程中,一个对象调用start只能调用一次,调用多次将抛出异常(李兴华视频中说到的)
thread.start(); thread.start();//第二次调用将抛出异常
2、继承thread类不能实现资源共享
实现runnable接口可以实现资源共享
posted on 2014-04-07 17:45 crane_practice 阅读(110) 评论(0) 编辑 收藏 举报