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++
相关用法
- Java ListResourceBundle handleGetObject()用法及代码示例
- Java ListResourceBundle getKeys()用法及代码示例
- Java ListResourceBundle getContents()用法及代码示例
- 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 handleKeySet() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。