當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java RuleBasedCollator getRules()用法及代碼示例


java.text.RuleBasedCollat​​or類的getRules()方法用於獲取在基於規則的整理器對象初始化期間使用的規則。

用法:

public String getRules()

參數:此方法不接受任何參數作為參數。


返回值:此方法返回在基於規則的整理器對象初始化期間使用的規則。

下麵是說明getRules()方法的示例:

範例1:

// Java program to demonstrate 
// getRules() 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 rule of this object 
            // using getRules() mehtod 
            String rule = col.getRules(); 
  
            // display result 
            System.out.println("rule is:- "
                               + rule); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
        catch (ParseException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
    } 
}
輸出:
rule is:- < a < c & a < b

範例2:

// Java program to demonstrate 
// getRules() 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 rule of this object 
            // using getRules() mehtod 
            String rule = col.getRules(); 
  
            // display result 
            System.out.println("rule is:- "
                               + rule); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
        catch (ParseException e) { 
  
            System.out.println("Exception thrown:"
                               + e); 
        } 
    } 
}
輸出:
rule is:- < a < b < c < d

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



相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 RuleBasedCollator getRules() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。