当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java MessageFormat hashCode()用法及代码示例


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-



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 MessageFormat hashCode() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。