java.lang.Integer.getInteger(String nm, int val)方法範例


java.lang.Integer.getInteger(String nm, int val) 方法確定具有指定名稱的系統屬性的整數值。引數val為預設值。如果有指定名字的屬性,如果屬性不具有正確的數位格式,或者指定名稱為空或null,或一個Integer物件,表示第二個引數的值被返回。

宣告

以下是java.lang.Integer.getInteger()方法的宣告

public static Integer getInteger(String nm, int val)

引數

  • nm -- 這是屬性名。

  • val -- 這是預設值。

返回值

此方法返回屬性的整數值。

異常

  • NA

例子

下面的例子顯示java.lang.Integer.getInteger()方法的使用。

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     /* returns the integer value of the system property and won't 
     print default specified value as specified system property exits */
     String str = "sun.arch.data.model";
     System.out.println(Integer.getInteger(str, 5));

     /* returns default specified value as system property "abcd" 
     does not exist */ 
     System.out.println(Integer.getInteger("abcd",5));
   }
} 

讓我們來編譯和執行上面的程式,這將產生以下結果:

64
5