Groovy Dates & Times toString()方法
将此Date对象转换为表单的字符串
dow mon dd hh:mm:ss zzz yyyy
句法
public String toString()
参数
没有。
返回值
此日期的字符串表示形式。
例子
下面是一个使用这个方法的例子 -
class Example { static void main(String[] args) { Date olddate = new Date("05/11/2015"); Date newdate = new Date("05/11/2015"); Date latestdate = new Date(); System.out.println(olddate.toString()); System.out.println(newdate.toString()); System.out.println(latestdate.toString()); } }
当我们运行上面的程序,我们将得到以下结果 -
Mon May 11 00:00:00 GST 2015 Mon May 11 00:00:00 GST 2015 Thu Dec 10 21:46:18 GST 2015