Java 中的 ZoneOffsetTransitionRule getOffsetBefore()方法,示例
类的 getOffsetBefore() 方法用于获取过渡开始的特定时刻的区域偏移对象。
语法:
public ZoneOffset getOffsetBefore()
参数:该方法不接受任何参数。
返回值:该方法返回在过渡开始的特定时刻的区域偏移对象。
下面是举例说明 getOffsetBefore() 方法的例子:
例 1:
// Java program to demonstrate
// getOffsetBefore() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing
// ZoneOffsetTransitionRule Object
ZoneOffsetTransitionRule zonetrans1
= ZoneOffsetTransitionRule
.of(
Month.JANUARY, 12,
DayOfWeek.SUNDAY,
LocalTime.of(03, 24, 45),
false,
ZoneOffsetTransitionRule
.TimeDefinition
.STANDARD,
ZoneOffset.ofTotalSeconds(8),
ZoneOffset.ofTotalSeconds(10),
ZoneOffset.ofTotalSeconds(12));
// getting object of Zone offset
// by using getOffsetBefore() method
ZoneOffset off
= zonetrans1.getOffsetBefore();
// display the result
System.out.println(
"Zone Offset before : " + off);
}
}
输出:
Zone Offset before : +00:00:10
例 2:
// Java program to demonstrate
// getOffsetBefore() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing
// ZoneOffsetTransitionRule Object
ZoneOffsetTransitionRule zonetrans1
= ZoneOffsetTransitionRule
.of(
Month.JANUARY, 12,
DayOfWeek.SUNDAY,
LocalTime.of(03, 24, 45),
false,
ZoneOffsetTransitionRule
.TimeDefinition
.STANDARD,
ZoneOffset.ofTotalSeconds(8),
ZoneOffset.ofTotalSeconds(17),
ZoneOffset.ofTotalSeconds(12));
// getting object of Zone offset
// by using getOffsetBefore() method
ZoneOffset off
= zonetrans1.getOffsetBefore();
// display the result
System.out.println(
"Zone Offset before : " + off);
}
}
输出:
Zone Offset before : +00:00:17
版权属于:月萌API www.moonapi.com,转载请注明出处