對於Boolean類使用了字符串構造方式,並且之後使用了toString()方法將true和false以字符串形式輸出。
- /**
- * 對於Boolean類使用了字符串構造方式,並且之後使用了toString()方法將true和false以字符串形式輸出。
- * @author HAN
- *
- */
- public class BooleanApps {
- Boolean b1=new Boolean("true");
- String str1= b1.toString();
-
- Boolean b2=new Boolean("OK");
- String str2= b2.toString();
- public BooleanApps(){
- System.out.println(str1);
- System.out.println(str2);
- }
- public static void main(String[] args){
- new BooleanApps();
- }
- }