Maison  >  Article  >  Java  >  Quelle est l'importance de la classe booléenne en Java ?

Quelle est l'importance de la classe booléenne en Java ?

WBOY
WBOYavant
2023-09-10 20:33:12879parcourir

Quelle est limportance de la classe booléenne en Java ?

The java.lang.Boolean class is a final class and it is a subclass of Object class. The Boolean class wraps the value of primitive datatype boolean into a Boolean object. An object of type Boolean contains a single field whose type is boolean. In other words, the wrapper classes create objects for primitive data types. This class provides many methods for converting a boolean to a String and a String to a boolean as well as other constants and methods useful when dealing with a boolean.

Syntax

<strong>public final class Boolean extends Object implements Serializable, Comparable</strong>

Example1

public class BooleanTest {
   public static void main(String[] args) {
      Boolean b;
      b = new Boolean(true);
      boolean b1;
      b1 = b.booleanValue();
      String data = "The Primitive value of Boolean object " + b + " is " + b1;
      System.out.println(data);
   }
}

Output

The Primitive value of Boolean object true is true

Example2

的中文翻译为:

示例2

public class BooleanTest1 {
   public static void main(String args[]) {
      Boolean b1, b2;
      b1 = new Boolean(true);
      b2 = new Boolean("false");
      System.out.println("b1 Value is : "+ b1.booleanValue());
      System.out.println("b2 Value is : "+ b2.booleanValue());
      System.out.println("b1 compareTo b2 : "+ b1.compareTo(b2));
      System.out.println("b1 equals b2 : "+ b1.equals(b2));
   }
}

Output

b1 Value is : true
b2 Value is : false
b1 compareTo b2 : 1
b1 equals b2 : false

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer