| Return | Method | Summary |
|---|---|---|
| String | toString() | Returns a String object representing this Boolean's value. |
| static String | toString(boolean b) | Returns a String object representing the specified boolean. |
public class Main {
public static void main(String[] args) {
Boolean boolean1 = new Boolean("true");
System.out.println(boolean1.toString());
System.out.println(Boolean.toString(true));
}
}
The output:
true
true| w__w__w__.__j___a__v___a2_s.__c___o___m_ | Contact Us |
| Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
| All other trademarks are property of their respective owners. |