码迷,mamicode.com
首页 > 其他好文 > 详细

Pg364作业题

时间:2016-03-15 23:22:30      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:

 

1.尝试定义一个继承Thread类的类,并覆盖run()方法,在run()方法中每隔100毫秒打印一句话。

技术分享
 1 package org.hanqi.thred;
 2 
 3 public class ZuoyeThread extends Thread {
 4 
 5     public void run()
 6     {
 7         for(int i=1;;i++)
 8         {
 9            
10             System.out.println("大家好!");
11         
12             try {
13                 Thread.sleep(100);
14             } catch (InterruptedException e) {
15                 // TODO 自动生成的 catch 块
16                 e.printStackTrace();
17             }
18         }
19     }
20 
21     
22 }
ZuoyeThread 继承
技术分享
 1 package org.hanqi.thred;
 2 
 3 public class Zuoye {
 4 
 5     public static void main(String[] args) {
 6 
 7     
 8         ZuoyeThread  zt=new ZuoyeThread();
 9         
10         zt.start();
11 
12     }
13 
14 }
Zuoye 测试类

技术分享

技术分享

Pg364作业题

标签:

原文地址:http://www.cnblogs.com/arxk/p/5281595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!