gpt4 book ai didi

Java 格式化、负值、零填充

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:34:54 27 4
gpt4 key购买 nike

引用自:http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

'd' '\u0054' Formats the argument as a decimal integer. The localization algorithm is applied.

If the '0' flag is given and the value is negative, then the zero padding will occur after the sign.

我感到很沮丧,试图学习这种格式化的东西,但那个教程是如此困惑和凌乱。

String.format("%03d", int); 

我试图了解整个\u0054 到底应该去哪里,但我不知道,我一定是遗漏了一些非常明显的东西或其他东西......

编辑:

我想要实现的目标:正 10:010负 10:-10我想要达到的负面结果:-010

最佳答案

\u0054d

你可以做到

((i < 0) ? "-" : "") + String.format("%03d", Math.abs(i)); 

关于Java 格式化、负值、零填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12252780/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com