当前位置: 代码迷 >> Java相关 >> 请帮帮忙 谢谢
  详细解决方案

请帮帮忙 谢谢

热度:37   发布时间:2008-09-04 20:03:50.0
请帮帮忙 谢谢
public class test
{
    public static void main(String[] main)
    {
        int a=1,b=4;
        System.out.println(a);
        //
        System.out.println(b);
    }
}
我想在去其中加入“//”后加入一段代码用来控制时间
在3秒后显示b的值
请问该怎么办?
谢谢
搜索更多相关的解决方案: java  

----------------解决方案--------------------------------------------------------
public class test
{
    public static void main(String[] main)
    {
        int a=1,b=4;
        System.out.println(a);
        try{
             Thread.sleep(3000);
         }catch(Exception e){}
        System.out.println(b);
    }
}
----------------解决方案--------------------------------------------------------
谢谢了
----------------解决方案--------------------------------------------------------
睡眠吗
----------------解决方案--------------------------------------------------------
  相关解决方案