想用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);
}
}