编写程序,实现通过字符型变量创建boolean值,再将其转换成字符串输出,观察输出后的字符串与创建Boolean对象时给定的参数是否相同。
代码如下:
public class Main {
public static void main(String[] args) {
char ch = 'A';
boolean i = (ch == 'B ');//'A'不等于'B',返回一个false值
Boolean b = new Boolean(i);//定义一个Boolean对象,并将i作为参数传入
String q = b.toString();//将boolean值i转换为字符串
System.out.println("创建Boolean对象时给定的参数为: " + i);
System.out.println("转换为字符串后的输出为: " + q);
System.out.println("输出字符串是否与创建Boolean对象时给定的参数相同: " + q.equals(String.valueOf(i)));
}
}