java.lang.Boolean.valueOf(String s)方法範例


java.lang.Boolean.valueOf(String s) 返回具有指定字串表示的值是布林值。布林返回的是一個 true 的值,如果字串引數不為null,等於忽略大小寫的字串“true”。

宣告

以下是java.lang.Boolean.valueOf()方法的宣告

public static Boolean valueOf(String s)

引數

  • s - 一個字串

返回值

此方法將返回的字串所表示的布林值。

異常

  • NA

例子

下面的例子顯示lang.Boolean.valueOf()方法的使用。

package com.yiibai;

import java.lang.*;

public class BooleanDemo {

   public static void main(String[] args) {

      // create 2 Boolean objects b1, b2
      Boolean b1, b2;

      // create 2 String's and assign values
      String s1 = null;
      String s2 = "false";

      /**
       *  static method is called using class name 
       *  assign result of valueOf method on s1, s2 to b1, b2
       */
      b1 = Boolean.valueOf(s1);
      b2 = Boolean.valueOf(s2);

      String str1 = "Boolean instance of string " + s1 + " is "  + b1;
      String str2 = "Boolean instance of string " + s2 + " is "  + b2;

      // print b1, b2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Boolean instance of string null is false
Boolean instance of string false is false