当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。