A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© lwj123   /  2015-6-26 22:43  /  17233 人查看  /  262 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

来领题了。。。。。。
回复 使用道具 举报
  1. //声明一个子线程类myThread;
  2. class myThread extends Thread {//继承Thread类
  3.     public myThread(String name) {//通过构造函数为线程名赋值
  4.          super(name);
  5.       }
  6.     public void run() {//覆盖父类中的方法run( ),将线程运行的代码存放在run中。
  7.         for(int i=0;i<10;i++){
  8.            System.out.print(" "+this.getName());//输出线程名称
  9.                 try {
  10.                         sleep(30);//在指定的毫秒数内让当前正在执行的线程休眠(暂停执行
  11.                }catch(InterruptedException e){
  12.                        //抛出: InterruptedException - 如果任何线程中断了当前线程。
  13.                   System.out.println(e.getMessage());//输出错误信息
  14.                   return;
  15.                 }
  16.         }
  17.     }
  18. }
  19.          public class multi {
  20.          public static void main( String args[] ) {
  21.             myThread thread1=new myThread("T1");
  22.             //创建类的对象,即创建一个线程
  23.             myThread thread2=new myThread("T2");
  24.             myThread thread3=new myThread("T3");
  25.             thread1.start();
  26.             //通过start( )方法启动线程(会自动执行线程的run方法)。
  27.             thread2.start();
  28.             thread3.start();
  29.        }
  30.    }
复制代码


//因为多个线程都在分享CPU的时间片,在某一时刻,只能有一个线程在运行(多核除外),所以每次运行的结果是不一样的。虽然此贴已经过了回答时间,不过做了一下是为了学习,记忆深刻些,谢谢版主。
回复 使用道具 举报
活动还有么
回复 使用道具 举报
来领题了    技术分福利呀
回复 使用道具 举报
Z·H 中级黑马 2015-6-30 00:44:31
165#
看看看看
回复 使用道具 举报
觀摩學習如何辦活動 謝謝版主
回复 使用道具 举报
领题领题!!!
回复 使用道具 举报
来领题。。。
回复 使用道具 举报
来领题。。。
回复 使用道具 举报
一城一世界 来自手机 中级黑马 2015-7-29 17:51:19
170#
难不?我也去看看~
回复 使用道具 举报
Apol 中级黑马 2015-7-29 18:14:27
171#
题呢??
回复 使用道具 举报
看看先!
回复 使用道具 举报
我来看看会不会做啊:)
回复 使用道具 举报
来接旨了
回复 使用道具 举报
来拿题!!!
回复 使用道具 举报
求给技术分,快够了,我要进黑马,给点力吧,谢谢
回复 使用道具 举报
速度领题
回复 使用道具 举报
菜鸟过来看看是什么题!
回复 使用道具 举报
收~~看看
回复 使用道具 举报
风华正茂 来自手机 中级黑马 2015-8-20 12:23:17
180#
来看看题
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马