黑马程序员技术交流社区

标题: 谁可以解释一下这段代码为何没有出来运行结果(版主能不能) [打印本页]

作者: yanghao    时间: 2014-9-30 00:25
标题: 谁可以解释一下这段代码为何没有出来运行结果(版主能不能)
  1. package com.itheima;

  2. public class Print {
  3.     public void print(String name){
  4.             for (int i = 0; i < name.length(); i++) {
  5.                         System.out.print(name.charAt(i));
  6.                 }
  7.     }
  8. }
复制代码
  1. package com.itheima;

  2. public class PringTest {

  3.         public static void main(String[] args) {
  4.                 final Print p1=new Print();
  5.                 final Print p2=new Print();
  6.                 p1.print("mm");
  7.                 new Thread(
  8.                         new  Runnable() {
  9.                                 public void run() {
  10.                                 while(true){
  11.                                         try {
  12.                                                 Thread.sleep(100);
  13.                                         } catch (InterruptedException e) {
  14.                                        
  15.                                                 e.printStackTrace();
  16.                                         }
  17.                                         p1.print("zhangxiaoxiang");

  18.                                         }
  19.                                        
  20.                                 }
  21.                         }
  22.                 ).start();
  23.                 new Thread(
  24.                                 new  Runnable() {
  25.                                         public void run() {
  26.                                                 while(true){p2.print("lili");}
  27.                                                
  28.                                         }
  29.                                 }
  30.                                 ).start();
  31.         }

  32. }
复制代码

可以加两分不


作者: 敏敏好学    时间: 2014-9-30 13:54
http://bbs.itheima.com/thread-40602-1-1.html     论坛加分规则   可以看一下   只要用心很快就能达到技术分的
作者: yanghao    时间: 2014-9-30 21:28
谢谢回复  不过来了怎么不解答下呢




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2