为什么我在此代码中收到错误请帮助我。 错误即将来临
找不到符号thread.sleep
这是代码:
import java.util.Date;
class Date_Time
{
public static void main(String[] args)
throws Throwable
{
while(true)
{
Date_Time d= new Date_Time();
System.out.print(d);
thread.sleep(500);
System.out.println("\r");
thread.sleep(500);
}
}
}
答案 0 :(得分:0)
在Java中,Thread.sleep(500);
有大写字母。
修改
Date_Time
是你的班级。如果要打印日期,需要使用Date
库
Date d = new Date();
System.out.print(d);
答案 1 :(得分:0)
d 是class
,所以如果你打印一个类,你将得到它的tostring表示,所以修改类,(覆盖toString方法并返回你需要的东西)来自它)
import java.util.Date;
class Date_Time{
public static void main(String[] args) throws Throwable {
while(true){
Date_Time d= new Date_Time();
System.out.print(new Date());
thread.sleep(500);
System.out.println("\r");
thread.sleep(500);
}
}
}