当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ListResourceBundle handleGetObject()用法及代码示例


ListResourceBundle类handleGetObject()方法

  • handleGetObject() 方法可在java.util包。
  • handleGetObject() 方法用于在给定键元素 (key_ele) 存在时返回该对象,否则返回 null。
  • handleGetObject() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • handleGetObject() 方法返回关键元素值时不抛出异常。

用法:

    public final Object handleGetObject(String key_ele) ;

参数:

  • String key_ele– 表示要检索其所需对象的关键元素。

返回值:

该方法的返回类型是Object,如果存在,则返回给定键元素的对象,否则返回 null。

例:

// Java program to demonstrate the example 
// of Object handleGetObject(String key_ele)  method 
// of ListResourceBundle 

import java.util.*;

// Instantiates a class that extends
// ListResourceBundle 
class HandleGetObjectOfLRB 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
  HandleGetObjectOfLRB get_ob = new HandleGetObjectOfLRB();

  // By using handleGetObject() method is
  // reurn the object for the given key
  // element 30 "JAVA"
  System.out.print("get_ob.handleGetObject(30):");
  System.out.println(get_ob.handleGetObject("30"));
 }
}

输出

get_ob.handleGetObject(30):JAVA


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java ListResourceBundle handleGetObject() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。