java.text.MessageFormat类的hashCode()方法用于获取此消息格式对象的哈希码。
用法:
public int hashCode()
参数:此方法不使用任何参数作为参数。
返回值:此方法返回此消息格式对象的哈希码。
下面是说明hashCode()方法的示例:
范例1:
// Java program to demonstrate
// hashCode() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing MessageFormat
MessageFormat mf
= new MessageFormat("{0, number, #}, {2, date, #.#}, {4, time}");
// getting hash code
// for this MessageFormat Object
// using hashCode() method
int hash = mf.hashCode();
// display the result
System.out.println("Hashcode is:" + hash);
}
}
输出:
Hashcode is:1408
范例2:
// Java program to demonstrate
// hashCode() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing MessageFormat
MessageFormat mf
= new MessageFormat("{0, number, #}, {4, time}");
// getting hash code
// for this MessageFormat Object
// using hashCode() method
int hash = mf.hashCode();
// display the result
System.out.println("Hashcode is:" + hash);
}
}
输出:
Hashcode is:44
参考: https://docs.oracle.com/javase/9/docs/api/java/text/MessageFormat.html#hashCode-
相关用法
- Java MessageFormat toPattern()用法及代码示例
- Java MessageFormat parseObject()用法及代码示例
- Java MessageFormat getFormatsByArgumentIndex()用法及代码示例
- Java MessageFormat setLocale()用法及代码示例
- Java MessageFormat getFormats()用法及代码示例
- Java MessageFormat formatToCharacterIterator()用法及代码示例
- Java MessageFormat applyPattern()用法及代码示例
- Java MessageFormat equals()用法及代码示例
- Java MessageFormat format()方法用法及代码示例
- Java MessageFormat format()函数用法及代码示例
- Java MessageFormat setFormatsByArgumentIndex()用法及代码示例
- Java MessageFormat setFormats()用法及代码示例
- Java MessageFormat parse()方法用法及代码示例
- Java MessageFormat getLocale()用法及代码示例
- Java MessageFormat parse()函数用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 MessageFormat hashCode() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。