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


Java ListResourceBundle handleKeySet()用法及代碼示例


ListResourceBundle類handleKeySet()方法

  • handleKeySet() 方法可在java.util包。
  • handleKeySet() 方法用於獲取此 ListResourceBundle 中所有現有鍵的集合。
  • handleKeySet() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • handleKeySet() 方法返回鍵集時不拋出異常。

用法:

    public Set handleKeySet();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是Set,它返回此 ListResourceBundle 中所有現有鍵的 Set 視圖。

例:

// Java program to demonstrate the example 
// of Set handleKeySet()  method 
// of ListResourceBundle 

import java.util.*;

// Instantiates a class that extends
// ListResourceBundle 
class GetKeySet extends ListResourceBundle {
 // By using getContent() method is to
 // get the contents in the form of 
 // 2D objects

 protected Object[][] getContents() {
  return new Object[][] {
   {
    "10",
    "C"
   }, {
    "20",
    "C++"
   }, {
    "30",
    "JAVA"
   }, {
    "40",
    "SFDC"
   }, {
    "50",
    "PHP"
   }
  };
 }

 protected Set < String > handleKeySet() {
  return new LinkedHashSet < String > ();
 }
}

public class Main {
 public static void main(String[] args) {
  // Instantiates an object of
  // GetKeys
  GetKeySet get_ob = new GetKeySet();

  // By using handleGetObject() method is
  // reurn the object for the given key
  // element 20 "C++"

  System.out.print("get_ob.getString(20):");
  System.out.println(get_ob.getString("20"));
 }
}

輸出

get_ob.getString(20):C++


相關用法


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