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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。