Java Integer getInteger()方法

java.lang.Integer.getInteger(String nm, int val) 方法确定具有指定名称的系统属性的整数值。参数val为默认值。如果有指定名字的属性,如果属性不具有正确的数字格式,或者指定名称为空或null,或一个Integer对象,表示第二个参数的值被返回。

1 语法

public static Integer getInteger(String nm, int val)

2 参数

nm :这是属性名。

val :这是缺省值。

3 返回值

此方法返回属性的整数值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Integer getInteger()方法
 */
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

 

热门文章

优秀文章