标题:想用String.format格式化字符串,不知道为什么出现了异常
取消只看楼主
邹特强
Rank: 2
等 级:论坛游民
帖 子:123
专家分:85
注 册:2016-9-21
结帖率:85.71%
已结贴  问题点数:20 回复次数:1 
想用String.format格式化字符串,不知道为什么出现了异常
public class Primitive {

public static void main(String[] args)
{
   int a=(int)(Math.random()*10);//静态的Math方法,直接调用,Math.random()本身返回的是双精度数
   int b=Math.abs(-100);//abs有覆盖版本,传入整型参数时会返回整型,传入双精度浮点数会返回double,当想在不同primitive数据类型运用时要遵循大盒子装小盒子
   double c=Math.abs(-1000.3);
   int d=Math.round(-24.8f);//round方法是将float或double四舍五入,返回整型会则会长整型
   int e=Math.min(b, (int)c);
   double f=Math.max(999.9, 999.8);
   String string=String.format("%d,%d,%lf,%d,%d,%lf",a,b,c,d,e,f);
   System.out.println(string);
   System.out.println(a+" "+b+" "+c+" "+d+" "+e+" "+f);
}

}
搜索更多相关主题的帖子: public double 字符串 
2017-03-22 22:48
邹特强
Rank: 2
等 级:论坛游民
帖 子:123
专家分:85
注 册:2016-9-21
得分:0 
回复 2楼 孤独与烈酒
哈哈,中了c语言的毒了,你说的对,谢了。
但为什么用%lf没有错误啊,l是指L,它表示啥意思?

............
2017-03-23 13:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-475402-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.359511 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved