java.time.OffsetTime withOffsetSameInstant()方法
java.time.OffsetTime.withOffsetSameInstant(ZoneOffset offset)方法返回具有指定偏移量的此OffsetTime的副本,确保结果在隐含日期的同一时刻。
1 语法
public OffsetTime withOffsetSameInstant(ZoneOffset offset)
2 参数
offset:要更改为的区域偏移量,而不是null。
3 返回值
基于此时间的偏移时间与请求的偏移量,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.OffsetTime withOffsetSameInstant()方法
*/
import java.time.OffsetTime;
import java.time.ZoneOffset;
public class OffsetTimeDemo {
public static void main(String[] args) {
OffsetTime time = OffsetTime.parse("10:15:30+01:00");
OffsetTime result = time.withOffsetSameInstant(ZoneOffset.UTC);
System.out.println(result);
}
}
输出结果为:
09:15:30Z
热门文章
优秀文章