结果为什么是1,23,45,67,千分位只能够加入一次吗?
- public class DecimalTest {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
-
-
- DecimalFormat dl = new DecimalFormat("###,#,##");
- System.out.println(dl.format(1234567));
-
-
-
- }
- }
复制代码 |