java.time.ZoneOffset of()方法

java.time.ZoneOffset.of(String offsetId)方法使用offfsetID获取ZoneOffset的实例。

1 语法

public static ZoneOffset of(String offsetId)

2 参数

offsetId:偏移ID,不为null。

3 返回值

ZoneOffset对象,不能为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.ZoneOffset of()方法
 */
import java.time.ZoneOffset;

public class ZoneOffsetDemo {
   public static void main(String[] args) {

      ZoneOffset zone = ZoneOffset.of("Z");
      System.out.println(zone);  
   }
}

输出结果为:

Z

 

热门文章

优秀文章