java 根据类名示例化类_Java即时类| atOffset()方法与示例

java 根据类名示例化类

即时类atOffset()方法 (Instant Class atOffset() method)

  • atOffset() method is available in java.time package.

    atOffset()方法在java.time包中可用。

  • atOffset() method is used to returns OffsetDateTime to merge this Instant with the given zone offset.

    atOffset()方法用于返回OffsetDateTime,以将此Instant与给定的区域偏移量合并。

  • atOffset() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    atOffset()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • atOffset() method may throw an exception at the time of representing Instant.

    atOffset()方法在表示Instant时可能会引发异常。

    DateTimeException: This exception may throw when the given parameter couldn’t adjust this Instant.

    DateTimeException :如果给定参数无法调整此Instant,则可能引发此异常。

Syntax:

句法:

    public OffsetDateTime atOffset(ZoneOffset off);

Parameter(s):

参数:

  • ZoneOffset off – represents the zone offset to merge with this Instant.

    ZoneOffset off –表示要与此即时合并的区域偏移。

Return value:

返回值:

The return type of this method is OffsetDateTime, it returns OffsetDateTime object that holds the value merged this Instant with the given offset.

此方法的返回类型为OffsetDateTime ,它返回OffsetDateTime对象,该对象保存将此Instant与给定偏移量合并的值。

Example:

例:

// Java program to demonstrate the example 
// of atOffset(ZoneOffset off) method 
// of Instant

import java.time.*;
public class AtOffsetOfInstant {
    public static void main(String args[]) {
        // Instantiates two Instant ,
        // two ZoneOffset
        Instant ins1 = Instant.parse("2006-04-03T05:10:15.00Z");
        Instant ins2 = Instant.parse("2007-06-05T10:20:30.00Z");
        ZoneOffset zo_off1 = ZoneOffset.ofTotalSeconds(10);
        ZoneOffset zo_off2 = ZoneOffset.ofHours(2);

        // Display ins1,ins2,zo_off1
        // and zo_off2
        System.out.println("Instant ins1 and ins2: ");
        System.out.println("ins1: " + ins1);
        System.out.println("ins2: " + ins2);
        System.out.println();
        System.out.println("ZoneOffset zo_off1 and zo_off2: ");
        System.out.println("Seconds to add: " + zo_off1);
        System.out.println("Hours to add: " + zo_off2);


        System.out.println();

        // Here, this method merges this Instant(ins1)
        // with the given ZoneOffset(zo_off1) i.e. here
        // we are adding zo_off1 (10 seconds) with 
        // the seconds of this Instant (ins1)
        OffsetDateTime off_da_time = ins1.atOffset(zo_off1);

        // Display off_da_time
        System.out.println("ins1.atOffset(zo_off1): " + off_da_time);

        // Here, this method merges this Instant(ins2)
        // with the given ZoneOffset(zo_off2) i.e. here
        // we are adding zo_off2 (2 hours) with 
        // the hours of this Instant (ins2)
        off_da_time = ins2.atOffset(zo_off2);

        // Display off_da_time
        System.out.println("ins2.atOffset(zo_off2): " + off_da_time);
    }
}

Output

输出量

Instant ins1 and ins2: 
ins1: 2006-04-03T05:10:15Z
ins2: 2007-06-05T10:20:30Z

ZoneOffset zo_off1 and zo_off2: 
Seconds to add: +00:00:10
Hours to add: +02:00

ins1.atOffset(zo_off1): 2006-04-03T05:10:25+00:00:10
ins2.atOffset(zo_off2): 2007-06-05T12:20:30+02:00


翻译自: https://www.includehelp.com/java/instant-atoffset-method-with-example.aspx

java 根据类名示例化类

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值