Java 中的 MessageFormat 等于()方法,示例
原文:https://www . geesforgeks . org/messageformat-equals-method-in-Java-with-example/
java.text.MessageFormat 类的 equals() 方法用于检查两个 MessageFormat 对象是否相同。
语法:
public boolean equals(Object obj)
参数:该方法取消息格式对象,与当前消息格式对象进行比较。 返回值:如果两个消息格式对象彼此相等,则返回真,否则返回假。 以下是举例说明等于()方法: 例 1:
Java 语言(一种计算机语言,尤用于创建网站)
// Java program to demonstrate
// equals() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing MessageFormat
MessageFormat mf1
= new MessageFormat("{0, date, #}, {1, time, #}, {0, number}");
// creating and initializing MessageFormat
MessageFormat mf2
= new MessageFormat("{0, date, #}, {1, time, #}, {0, number}");
// compare both object
// using equals() method
boolean i = mf1.equals(mf2);
// display result
if (i)
System.out.println(
"mf1 is equals to mf2");
else
System.out.println(
"mf1 is not equal to mf2");
}
catch (ClassCastException e) {
System.out.println("Exception thrown : " + e);
}
}
}
Output:
mf1 is equals to mf2
版权属于:月萌API www.moonapi.com,转载请注明出处