Java Long getLong()方法

java.lang.Long.getLong(String nm, Long val) 方法确定具有指定名称的系统属性的long值。第一个参数nm 被视为系统属性的名称。

第二个参数 val 为默认值。如果有指定名字的属性,如果属性不具有正确的数字格式,或者指定名称为空或null一个Long对象,表示第二个参数的值返回。
 

1 语法

public static Long getLong(String nm, Long val)

2 参数

nm:这是属性名称。

val:这是默认值。

3 返回值

此方法返回属性的Long值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Long getLong()方法
 */
import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

      Long v = new Long(65760);

      /* returns the Long 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(Long.getLong(str, v));

      /* returns default specified value as system property "java" 
         does not exist */ 
      System.out.println(Long.getLong("java", v));
   }
}

输出结果为:

64
65760

 

热门文章

优秀文章