org.threeten.bp.OffsetDateTime.plusHours()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(161)

本文整理了Java中org.threeten.bp.OffsetDateTime.plusHours()方法的一些代码示例,展示了OffsetDateTime.plusHours()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OffsetDateTime.plusHours()方法的具体详情如下:
包路径:org.threeten.bp.OffsetDateTime
类名称:OffsetDateTime
方法名:plusHours

OffsetDateTime.plusHours介绍

[英]Returns a copy of this OffsetDateTime with the specified period in hours added.

This instance is immutable and unaffected by this method call.
[中]

代码示例

代码示例来源:origin: ThreeTen/threetenbp

/**
 * Returns a copy of this {@code OffsetDateTime} with the specified period in hours subtracted.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param hours  the hours to subtract, may be negative
 * @return an {@code OffsetDateTime} based on this date-time with the hours subtracted, not null
 * @throws DateTimeException if the result exceeds the supported date range
 */
public OffsetDateTime minusHours(long hours) {
  return (hours == Long.MIN_VALUE ? plusHours(Long.MAX_VALUE).plusHours(1) : plusHours(-hours));
}

代码示例来源:origin: org.threeten/threetenbp

/**
 * Returns a copy of this {@code OffsetDateTime} with the specified period in hours subtracted.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param hours  the hours to subtract, may be negative
 * @return an {@code OffsetDateTime} based on this date-time with the hours subtracted, not null
 * @throws DateTimeException if the result exceeds the supported date range
 */
public OffsetDateTime minusHours(long hours) {
  return (hours == Long.MIN_VALUE ? plusHours(Long.MAX_VALUE).plusHours(1) : plusHours(-hours));
}

代码示例来源:origin: stackoverflow.com

OffsetDateTime offsetDateTimeUTC = OffsetDateTime.parse("2015.08.31T16:00:00.000Z", pattern);
OffsetDateTime plus8hours = offsetDateTimeUTC.plusHours(8);

相关文章