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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© freehello 中级黑马   /  2015-9-1 07:50  /  417 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.lang.Math;
  2. import java.lang.Thread;

  3. public class Demo {

  4.         public static void main(String[] args) throws Exception{
  5.             while(true) {
  6.                 int i =(int) ((Math.random())*100);
  7.                 System.out.print(" " + i);
  8.                 //Thread.currentThread().sleep(160);
  9.             }
  10.         }  
  11. }
复制代码


为什么必须加上延时才输出结果,原因?

2 个回复

倒序浏览
  1. System.out.println(" "+i);
复制代码

改成这个就好了
回复 使用道具 举报
本帖最后由 freehello 于 2015-9-1 13:18 编辑

谢谢,是缓存问题吗
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马