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