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


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


java.text.RuleBasedCollat​​or类的hashCode()方法用于获取此Collat​​or对象的hashCode。

用法:

public abstract 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) 
    { 
        try { 
  
            // Creating and initalizing new simple rule 
            String simple = "< a < b < c < d"; 
  
            // Creating and initializing 
            // new RuleBasedCollator Object 
            RuleBasedCollator col 
                = new RuleBasedCollator(simple); 
  
            // getting hashCode of this object 
            // using hashCode() mehtod 
            int hash = col.hashCode(); 
  
            // display result 
            System.out.println("hashCode is:- "
                               + hash); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
        catch (ParseException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
    } 
}
输出:
hashCode is:- 1882448026

范例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) 
    { 
        try { 
  
            // Creating and initalizing new simple rule 
            String simple = "< a < c & a < b"; 
  
            // Creating and initializing 
            // new RuleBasedCollator Object 
            RuleBasedCollator col 
                = new RuleBasedCollator(simple); 
  
            // getting hashCode of this object 
            // using hashCode() mehtod 
            int hash = col.hashCode(); 
  
            // display result 
            System.out.println("hashCode is:- "
                               + hash); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
        catch (ParseException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
    } 
}
输出:
hashCode is:- 2022902017

参考: https://docs.oracle.com/javase/9/docs/api/java/text/RuleBasedCollator.html#hashCode-



相关用法


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