`
qwxi_1
  • 浏览: 8528 次
  • 性别: Icon_minigender_1
  • 来自: 邯郸
最近访客 更多访客>>
文章分类
社区版块
存档分类

SCJP(310-055)学习之旅———格式化输出

阅读更多

       -------------格式化输出-------------

 

 

 

 System.out.format("%b\n",new Date());

对于b(布尔类型)来说:

如果是字符,字符串,数字,对象为true;

如果是NULL,则为FALSE

 


  System.out.format("%c\n",new Integer(50));

对于字符类型来说:

只能是:byte, int, short,字符,对应的包装类

其他的则报告错误

 


  System.out.printf("%d\n",new Long("99"));

对于整型数据来说:

如下:byte short int long 及其包装类都可以 但float double 不可以

 


  System.out.printf("%f\n",123.00);

对于浮点类型来说:必须是float 或者是 double   ,其他都不可以

 


  System.out.format("%s",'p');

对于字符来说:字符串,数字,对象都可以。其实就是用字符串描述参量

 

 

2
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics