欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

boolean类型格式化问题

程序员文章站 2022-03-18 19:48:15
...

boolean类型格式化问题


public class Main {

    public static void main(String[] args) {
	// write your code here
        System.out.println(String.format("%s" , true));
        System.out.println(String.format("%b" , true));

        System.out.println(String.format("%s" , new Boolean(true)));
        System.out.println(String.format("%b" , new Boolean(true)));

        System.out.println(String.format("%s" , null));
        System.out.println(String.format("%b" , null));
    }
}


/**
 * true
 * true
 * true
 * true
 * null
 * false
 */

// 所以对于boolean格式化的时候要用%b,而不能用%s。
相关标签: 填坑