Java Date toString()方法与示例
日期類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()方法是一種非靜態(tài)方法,只能通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。
toString() method does not throw an exception at the time of representing a date in a string.
toString()方法在表示字符串中的日期時不會引發(fā)異常。
Syntax:
句法:
public String toString();Parameter(s):
參數(shù):
It does not accept any parameter.
它不接受任何參數(shù)。
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 Dateimport java.util.*;public class ToStringOfDate {public static void main(String[] args) {// create a Date object with datesDate this_date = new Date(2016, 8, 20);// By using toString() method is to represent// this date as a stringSystem.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
總結(jié)
以上是生活随笔為你收集整理的Java Date toString()方法与示例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 光与夜之恋溯回之涟怎么获得
- 下一篇: java创建临时文件_用Java创建一个