當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Boolean.toString()用法及代碼示例



描述

這個java.lang.Boolean.toString(boolean b)返回一個表示指定布爾值的 String 對象。如果指定的布爾值為真,則返回字符串 "true",否則返回字符串 "false"。

聲明

以下是聲明java.lang.Boolean.toString()方法

public static String toString(boolean b)

參數

bâˆ' 要轉換的布爾值

返回值

此方法返回指定布爾值的字符串表示形式。

異常

NA

示例

下麵的例子展示了 lang.Boolean.toString() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class BooleanDemo {

   public static void main(String[] args) {

      // create 2 boolean primitives bool1, bool2
      boolean bool1, bool2;

      // assign values to bool1, bool2
      bool1 = true;
      bool2 = false;

      // create 2 String's s1, s2
      String s1, s2;

      /**
       *  static method is called using class name 
       *  assign string value of primitives bool1, bool2 to s1, s2
       */
      s1 = Boolean.toString(bool1);
      s2 = Boolean.toString(bool2);

      String str1 = "String value of boolean primitive " +bool1+ " is "  +s1;
      String str2 = "String value of boolean primitive " +bool2+ " is "  +s2;

      // print s1, s2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

String value of boolean primitive true is true
String value of boolean primitive false is false

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Boolean.toString() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。