如何将字符串对象转换为布尔对象?
如何将String
对象转换为Boolean
对象?
How to convert String
object to Boolean
object?
推荐答案
试试(取决于你想要什么结果类型):
Try (depending on what result type you want):
Boolean boolean1 = Boolean.valueOf("true");
boolean boolean2 = Boolean.parseBoolean("true");
优势:
- Boolean:这不会创建新的 Boolean 实例,因此性能更好(垃圾收集更少).它重用
Boolean.TRUE
或Boolean.FALSE
的两个实例. - boolean:不需要实例,使用原始类型.
官方文档在 Javadoc.
更新:
也可以使用自动装箱,但会降低性能.
我建议仅在您必须自己施放时才使用它,而不是在施放可以避免时使用.
Autoboxing could also be used, but it has a performance cost.
I suggest to use it only when you would have to cast yourself, not when the cast is avoidable.
相关文章