當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DecimalFormat equals()用法及代碼示例


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()



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 DecimalFormat equals() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。