当前位置: 技术问答>java相关
getBoolean()什么时候返回true?
来源: 互联网 发布时间:2015-10-26
本文导语: getBoolean(String name) Returns true if and only if the system property named by the argument exists and is equal to the string "true". 英文不好,翻译不明白! public class test { public static void main(String[] args) ...
getBoolean(String name)
Returns true if and only if the system property named by the argument exists and is equal to the string "true".
英文不好,翻译不明白!
public class test
{
public static void main(String[] args)
{
String ok="true";
boolean bl=Boolean.getBoolean(ok);
System.out.println(bl);
}
}
返回是false
Returns true if and only if the system property named by the argument exists and is equal to the string "true".
英文不好,翻译不明白!
public class test
{
public static void main(String[] args)
{
String ok="true";
boolean bl=Boolean.getBoolean(ok);
System.out.println(bl);
}
}
返回是false
|
public class Test {
public static void main (String args[]){
System.getProperties().put("boolean","true");
boolean bl=Boolean.getBoolean("boolean");
System.out.println("return is "+bl);
}
}
return is true
这句话的意思:如果在System的Property里面有以argument命名的元素(即boolean),并且他的值是一个等于"true"的字符串,才会返回true
public static void main (String args[]){
System.getProperties().put("boolean","true");
boolean bl=Boolean.getBoolean("boolean");
System.out.println("return is "+bl);
}
}
return is true
这句话的意思:如果在System的Property里面有以argument命名的元素(即boolean),并且他的值是一个等于"true"的字符串,才会返回true
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。