【Java Tips】boolean的类型与string类型的转换时间:2022-11-12 05:50:33boolean类型转化为string boolean b = true; String s = String.valueOf(b); System.out.println(s);