全屏
java.lang.Long.getLong(String nm) 方法确定具有指定名称的系统属性的long值。如果没有具有指定名称的属性,如果指定名称为空或null,或者该属性没有正确的数字格式,则返回null。
声明
以下是java.lang.Long.getLong()方法的声明public static Long getLong(String nm)
参数nm -- 这是属性名。
返回值
此方法返回属性的long值。
异常NA
例子
下面的例子显示java.lang.Long.getLong()方法的使用。
package cn.sxt;
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
分享到:
0评论