日期類toString()方法 (Date Class toString() method)
toString() method is available in java.util package.
toString()方法在java.util包中可用。
toString() method is for string denotation of this Date object or in other words we can say it denotes date in a string.
toString()方法用于此Date對象的字符串表示,換句話說,我們可以說它表示字符串中的日期。
toString() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
toString()方法是一種非靜態方法,只能通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。
toString() method does not throw an exception at the time of representing a date in a string.
toString()方法在表示字符串中的日期時不會引發異常。
Syntax:
句法:
public String toString();
Parameter(s):
參數:
It does not accept any parameter.
它不接受任何參數。
Return value:
返回值:
The return type of this method is String, it returns this date in string form.
此方法的返回類型為String ,它以字符串形式返回此日期。
Example:
例:
// Java program to demonstrate the example
// of String toString() method of Date
import java.util.*;
public class ToStringOfDate {
public static void main(String[] args) {
// create a Date object with dates
Date this_date = new Date(2016, 8, 20);
// By using toString() method is to represent
// this date as a string
System.out.println("this_date.toString(): " + this_date.toString());
}
}
Output
輸出量
this_date.toString(): Wed Sep 20 00:00:00 GMT 3916
翻譯自: https://www.includehelp.com/java/date-tostring-method-with-example.aspx