當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Instant toString()用法及代碼示例


Instant類的toString()方法使用ISO-8601表示形式返回此瞬間的字符串表示形式,使用的格式與DateTimeFormatter.ISO_INSTANT相同。

用法:

public String toString()

返回值:此方法返回此時刻的ISO-8601表示形式,不能為null。


以下示例程序旨在說明toString()方法:

示例1:

// Java program to demonstrate 
// Instant.toString() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a Instant object 
        Instant instant 
            = Instant.parse("2018-10-28T19:34:50.63Z"); 
  
        // print Instant using toString() 
        System.out.println("Instant: "
                           + instant.toString()); 
  
        // addition of 84000 seconds to this instant 
        Instant returnedValue 
            = instant.plusSeconds(84000); 
  
        // print result Instant using toString() 
        System.out.println("Returned Instant: "
                           + returnedValue.toString()); 
    } 
}

示例2:

// Java program to demonstrate 
// Instant.toString() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a Instant object 
        Instant instant 
            = Instant.parse("2022-06-21T19:34:50.63Z"); 
  
        // print Instant using toString() 
        System.out.println("Instant: "
                           + instant); 
    } 
}

參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#toString()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant toString() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。