本文整理汇总了Java中java.time.ZonedDateTime.withNano方法的典型用法代码示例。如果您正苦于以下问题:Java ZonedDateTime.withNano方法的具体用法?Java ZonedDateTime.withNano怎么用?Java ZonedDateTime.withNano使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.time.ZonedDateTime
的用法示例。
在下文中一共展示了ZonedDateTime.withNano方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: nowGasDay
import java.time.ZonedDateTime; //导入方法依赖的package包/类
public static ZonedDateTime nowGasDay() {
final ZonedDateTime now = ZonedDateTime.now(ZoneOffset.UTC);
now.withHour(6);
now.withMinute(0);
now.withSecond(0);
now.withNano(0);
return now;
}
示例2: test_withNanoOfSecond_normal
import java.time.ZonedDateTime; //导入方法依赖的package包/类
@Test
public void test_withNanoOfSecond_normal() {
ZonedDateTime base = ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500, ZONE_0100);
ZonedDateTime test = base.withNano(15);
assertEquals(test, ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500.withNano(15), ZONE_0100));
}
示例3: test_withNanoOfSecond_noChange
import java.time.ZonedDateTime; //导入方法依赖的package包/类
@Test
public void test_withNanoOfSecond_noChange() {
ZonedDateTime base = ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500, ZONE_0100);
ZonedDateTime test = base.withNano(500);
assertEquals(test, base);
}