当前位置:  技术问答>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

|
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

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间javax.swing类uidefaults的类成员方法: getboolean定义及介绍
  • java命名空间javax.swing.plaf.synth类synthstyle的类成员方法: getboolean定义及介绍
  • java命名空间javax.swing类uimanager的类成员方法: getboolean定义及介绍
  • java命名空间java.lang类boolean的类成员方法: getboolean定义及介绍
  • java命名空间java.lang.reflect类array的类成员方法: getboolean定义及介绍
  • java命名空间java.sql接口callablestatement的类成员方法: getboolean定义及介绍
  • java命名空间java.sql接口resultset的类成员方法: getboolean定义及介绍
  • java命名空间java.lang.reflect类field的类成员方法: getboolean定义及介绍
  • java命名空间java.util.prefs类abstractpreferences的类成员方法: getboolean定义及介绍
  • java命名空间java.util.prefs类preferences的类成员方法: getboolean定义及介绍


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,