parseBoolean(String s)与valueOf(String s)有什么区别
展开全部
我来解答一下
parseBoolean是包装类下Boolean下的方法,为了更明白一些,我们来看一下源代码
/**
* Parses the string argument as a boolean. The <code>boolean</code>
* returned represents the value <code>true</code> if the string argument
* is not <code>null</code> and is equal, ignoring case, to the string
* {@code "true"}. <p>
* Example: {@code Boolean.parseBoolean("True")} returns <tt>true</tt>.<br>
* Example: {@code Boolean.parseBoolean("yes")} returns <tt>false</tt>.
*
* @param s the <code>String</code> containing the boolean
* representation to be parsed
* @return the boolean represented by the string argument
* @since 1.5
*/
public static boolean parseBoolean(String s) {
return toBoolean(s);
}
源代码中很明显的解释了String类型转boolean类型的一个方法,当String的值为“true”时返回ture,当为其他字符串时返回false。是boolean 类型
至于valueOf(String s);是指将一个String类型的字符串转换为别的类型
如
Integer.valueOf("12");转为int型
Float.valueOf("12");转为浮点型
返回的都是包装类
等等
希望可以帮到你
parseBoolean是包装类下Boolean下的方法,为了更明白一些,我们来看一下源代码
/**
* Parses the string argument as a boolean. The <code>boolean</code>
* returned represents the value <code>true</code> if the string argument
* is not <code>null</code> and is equal, ignoring case, to the string
* {@code "true"}. <p>
* Example: {@code Boolean.parseBoolean("True")} returns <tt>true</tt>.<br>
* Example: {@code Boolean.parseBoolean("yes")} returns <tt>false</tt>.
*
* @param s the <code>String</code> containing the boolean
* representation to be parsed
* @return the boolean represented by the string argument
* @since 1.5
*/
public static boolean parseBoolean(String s) {
return toBoolean(s);
}
源代码中很明显的解释了String类型转boolean类型的一个方法,当String的值为“true”时返回ture,当为其他字符串时返回false。是boolean 类型
至于valueOf(String s);是指将一个String类型的字符串转换为别的类型
如
Integer.valueOf("12");转为int型
Float.valueOf("12");转为浮点型
返回的都是包装类
等等
希望可以帮到你
追问
弱弱的问一句,这两种方式哪一种效率更高些呢?
追答
这个可以不用考虑效率,应该考虑的是你需要返回的是什么类型,如果需要基本类型就用parseBoolean,如果需要对象就用valueOf
展开全部
parseBoolean返回的是boolean原生类型
valueOf返回的是Boolean类型
valueOf返回的是Boolean类型
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
valueOf(String s) 返回的是java对象 Boolean
parseBoolean(String s) 返回的是原生的 boolean
parseBoolean(String s) 返回的是原生的 boolean
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询