Java中的句点 isZero() 方法及示例
Java中 Period 类的 isZero() 方法用于检查此期间的 YEAR、MONTH、DAYS 三个是否都为零。
为了检查零周期,此函数被广泛使用。零周期是所有三个 YEAR、MONTHS 和 DAYS 都为零的周期。
句法:
public boolean isZero()
参数:此方法不接受任何参数。
返回值:如果给定期间的 YEARS、MONTHS、DAYS 三个值都为零,则此方法返回布尔值 True,否则返回 False。
下面的程序说明了上述方法:
程序 1 :
// Java code to show the function isZero()
// to check whether all of the three given units
// YEAR, MONTH, DAY are zero.
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodDemo {
// Function to check if all of the three YEAR, MONTH, DAY are zero
static void ifZero(int year, int months, int days)
{
Period period = Period.of(year, months, days);
System.out.println(period.isZero());
}
// Driver Code
public static void main(String[] args)
{
int year = 0;
int months = 0;
int days = 0;
ifZero(year, months, days);
}
}
输出:
true
方案二:
// Java code to show the function isZero()
// to check whether all of the three given units
// YEAR, MONTH, DAY are zero.
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodDemo {
// Function to check if all of the three YEAR, MONTH, DAY are zero
static void ifZero(int year, int months, int days)
{
Period period = Period.of(year, months, days);
System.out.println(period.isZero());
}
// Driver Code
public static void main(String[] args)
{
int year = 0;
int months = 0;
int days = -12;
ifZero(year, months, days);
}
}
输出:
false
参考:https: Java