vote up 0 vote down star

In Java you can write Boolean.valueOf(myString). However in Scala, java.lang.Boolean is hidden by scala.Boolean which lacks this function. It's easy enough to switch to using the original Java version of a boolean, but that just doesn't seem right.

So what is the one-line, canonical solution in Scala for extracting "true" from a string?

flag

2 Answers

vote up 1 vote down

Note: Don't write new Boolean(myString) in Java - always use Boolean.valueOf(myString). Using the new variant unnecessarily creates a Boolean object; using the valueOf variant doesn't do this.

link|flag
Very true. I've edited the question and removed <code>new Boolean(String)</code>. – David Crawshaw Sep 24 at 7:36
vote up 3 vote down check

Ah, I am silly. The answer is myString.toBoolean.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.