parseBoolean(String s)与valueOf(String s)有什么区别

 我来答
jj1552714
2011-06-23 · TA获得超过291个赞
知道小有建树答主
回答量:178
采纳率:0%
帮助的人:126万
展开全部
我来解答一下
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
vampire_c
2011-06-23 · TA获得超过735个赞
知道小有建树答主
回答量:315
采纳率:0%
帮助的人:480万
展开全部
parseBoolean返回的是boolean原生类型
valueOf返回的是Boolean类型
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sntey
2011-06-23 · 超过10用户采纳过TA的回答
知道答主
回答量:87
采纳率:0%
帮助的人:30.8万
展开全部
valueOf(String s) 返回的是java对象 Boolean
parseBoolean(String s) 返回的是原生的 boolean
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式