歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

JAVA包裝類Boolean的使用

對於Boolean類使用了字符串構造方式,並且之後使用了toString()方法將true和false以字符串形式輸出。

  1. /** 
  2.  * 對於Boolean類使用了字符串構造方式,並且之後使用了toString()方法將true和false以字符串形式輸出。 
  3.  * @author HAN 
  4.  * 
  5.  */  
  6. public class BooleanApps {  
  7.     Boolean b1=new Boolean("true");  
  8.     String str1= b1.toString();  
  9.       
  10.     Boolean b2=new Boolean("OK");  
  11.     String str2= b2.toString();  
  12.     public BooleanApps(){  
  13.         System.out.println(str1);  
  14.         System.out.println(str2);  
  15.     }  
  16.     public static void main(String[] args){  
  17.         new BooleanApps();  
  18.     }  
  19. }  
Copyright © Linux教程網 All Rights Reserved