equals()方法是java.text.DecimalFormat类的内置方法,它接受一个作为对象的参数,如果该参数对象与该对象相同,则返回true,否则返回false。
用法:
public boolean equals(Object arg)
参数:该函数接受单个强制参数arg,该参数指定要与之进行比较的对象。
返回值:该函数返回一个布尔值。如果两个对象相同,则返回true,否则返回false。
下面是上述函数的实现:
程序1:
// Java program to illustrate the
// equals() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the Currency Instance
DecimalFormat dF1 = new DecimalFormat();
dF1.getCurrencyInstance();
// Get the Currency Instance
DecimalFormat dF2 = new DecimalFormat();
dF2.getCurrencyInstance();
// Check if equal or not
if (dF1.equals(dF2))
System.out.println("Yes both are equal");
else
System.out.println("Yes both are not equal");
}
}
输出:
Yes both are equal
程序2:
// Java program to illustrate the
// equals() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Get the Currency Instance
DecimalFormat dF1 = new DecimalFormat();
dF1.getCurrencyInstance();
// Get Instance
DecimalFormat dF2 = new DecimalFormat();
dF2.setCurrency(Currency.getInstance(Locale.GERMANY));
// Check if equal or not
if (dF1.equals(dF2))
System.out.println("Yes both are equal");
else
System.out.println("Yes both are not equal");
}
}
输出:
Yes both are not equal
参考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#clone()
相关用法
- Java DecimalFormat setMaximumIntegerDigits()用法及代码示例
- Java DecimalFormat setMaximumFractionDigits()用法及代码示例
- Java DecimalFormat setGroupingSize()用法及代码示例
- Java DecimalFormat setDecimalSeparatorAlwaysShown()用法及代码示例
- Java DecimalFormat setCurrency()用法及代码示例
- Java DecimalFormat setDecimalFormatSymbols()用法及代码示例
- Java DecimalFormat getMaximumFractionDigits()用法及代码示例
- Java DecimalFormat getMinimumFractionDigits()用法及代码示例
- Java DecimalFormat getMaximumIntegerDigits()用法及代码示例
- Java DecimalFormat getMinimumIntegerDigits()用法及代码示例
- Java DecimalFormat hashCode()用法及代码示例
- Java DecimalFormat getMultiplier()用法及代码示例
- Java DecimalFormat getRoundingMode()用法及代码示例
- Java DecimalFormat setRoundingMode()用法及代码示例
- Java DecimalFormat setParseBigDecimal()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat equals() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。