Java Long getLong()方法

java.lang.Long.getLong(String nm) 方法确定具有指定名称的系统属性的long值。如果没有具有指定名称的属性,如果指定名称为空或null,或者该属性没有正确的数字格式,则返回null。

1 语法

public static Long getLong(String nm)

2 参数

nm :这是属性名。

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) {

     // determines the Long value of the system property 
     String str = "sun.arch.data.model";
     System.out.println(Long.getLong(str));

     // prints null
     str = "lang";
     System.out.println(Long.getLong(str));
   }
}

输出结果为:

64
null

 

热门文章

优秀文章