DecimalFormat.equals(Object obj) has the following syntax.
public boolean equals(Object obj)
In the following code shows how to use DecimalFormat.equals(Object obj) method.
/*from w w w. j ava 2 s . c o m*/ import java.text.DecimalFormat; import java.util.Currency; import java.util.Locale; public class Main { public static void main(String[] argv) throws Exception { DecimalFormat format = new DecimalFormat(); format.setCurrency(Currency.getInstance(Locale.GERMANY)); DecimalFormat format1 = new DecimalFormat(); System.out.println(format1.equals(format)); } }
The code above generates the following result.