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


Java Collator getStrength()用法及代碼示例


java.text.Collat​​or類的getStrength()方法用於獲取Collat​​or對象的strength屬性,該屬性將在比較期間幫助該對象。

用法:

public int getStrength()

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


返回值:此方法返回Collat​​or對象的strength屬性,該屬性將在比較期間幫助該對象。

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

範例1:

// Java program to demonstrate 
// getStrength() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // new simple rule 
            String simple 
                = "< a < b < c < d"; 
  
            // Creating and initializing 
            // new RuleBasedCollator Object 
            RuleBasedCollator col 
                = new RuleBasedCollator(simple); 
  
            // setting strength property 
            // for the Collator object 
            col.setStrength(Collator.IDENTICAL); 
  
            // getting strength property 
            // using getStrength() mehtod 
            int strength = col.getStrength(); 
  
            // display result 
            if (strength == 0) 
                System.out.println( 
                    "current strength "
                    + "property:- PRIMARY."); 
            else if (strength == 1) 
                System.out.println( 
                    "current strength "
                    + "property:- SECONDARY."); 
            else if (strength == 2) 
                System.out.println( 
                    "current strength"
                    + " property:-  TERTIARY."); 
            else
                System.out.println( 
                    "current strength "
                    + "property:- IDENTICAL."); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
        catch (ParseException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
current strength property:- IDENTICAL.

範例2:

// Java program to demonstrate 
// getStrength() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing Collator Object 
            Collator col = Collator.getInstance(Locale.UK); 
  
            // getting strength property 
            // using getStrength() method 
            int strength = col.getStrength(); 
  
            // display result 
            if (strength == 0) 
                System.out.println( 
                    "current strength "
                    + "property:- PRIMARY."); 
            else if (strength == 1) 
                System.out.println( 
                    "current strength "
                    + "property:- SECONDARY."); 
            else if (strength == 2) 
                System.out.println( 
                    "current strength "
                    + "property:-  TERTIARY."); 
            else
                System.out.println( 
                    "current strength "
                    + "property:- IDENTICAL."); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
current strength property:-  TERTIARY.

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



相關用法


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