ListResourceBundle類getContents()方法
- getContents() 方法可在
java.util
包。 - getContents() 方法用於返回此 ListResourceBundle 及其超類中存在的所有鍵的枚舉。
- getContents() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
- getContents() 方法在返回元素枚舉時不拋出異常。
用法:
public Enumeration getKeys();
參數:
- 它不接受任何參數。
返回值:
該方法的返回類型是Enumeration
,它獲取此 ListResourceBundle 及其超級包中所有現有鍵的枚舉。
例:
// Java program to demonstrate the example
// of Enumeration getKeys() method of
// ListResourceBundle
import java.util.*;
// Instantiates a class that extends
// ListResourceBundle
class GetKey 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"
}
};
}
}
public class Main {
public static void main(String[] args) {
// Instantiates an object of
// GetKeys
GetKey get_c = new GetKey();
// By using getKeys() method is
// return all the keys in the
// form of an Enumeration
System.out.println("get_c.getKeys():");
for (Enumeration en = get_c.getKeys(); en.hasMoreElements();)
System.out.println(en.nextElement());
}
}
輸出
get_c.getKeys(): 50 40 30 20 10
相關用法
- Java ListResourceBundle getContents()用法及代碼示例
- Java ListResourceBundle handleGetObject()用法及代碼示例
- Java ListResourceBundle handleKeySet()用法及代碼示例
- Java List spliterator()用法及代碼示例
- Java List size()用法及代碼示例
- Java List retainAll()用法及代碼示例
- Java List add(E ele)用法及代碼示例
- Java List add()用法及代碼示例
- Java List remove(Object obj)用法及代碼示例
- Java ListIterator nextIndex()用法及代碼示例
- Java List get()用法及代碼示例
- Java List add(int index, E element)用法及代碼示例
- Java List removeAll()用法及代碼示例
- Java ListIterator add()用法及代碼示例
- Java List listIterator()用法及代碼示例
- Java List toArray()用法及代碼示例
- Java List indexOf()用法及代碼示例
- Java List containsAll()用法及代碼示例
- Java Guava Lists.partition()用法及代碼示例
- Java List remove(int index)用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java ListResourceBundle getKeys() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。