ZoneOffset toString() example
Description
ZoneOffset toString()
outputs
this offset as a String, using the normalized ID.
Syntax
toString
has the following syntax.
public String toString()
Example
The following example shows how to use toString
.
import java.time.ZoneOffset;
/* ww w . jav a 2 s.c o m*/
public class Main {
public static void main(String[] args) {
ZoneOffset z = ZoneOffset.UTC;
System.out.println(z.toString());
}
}
The code above generates the following result.