Java Formatter - 什么是“#”为了?

发布于 2024-11-27 06:15:30 字数 194 浏览 0 评论 0原文

根据javadoc,'#'标志代表“结果应使用依赖于转换的替代形式”。我无法找到任何相关细节。有人可以解释什么是“依赖于转换的替代形式”吗?

According to javadoc, the '#' flag stands for "The result should use a conversion-dependent alternate form". I wasn't able to find any details on that. Could someone explain what is the "conversion-dependent alternate form"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只涨不跌 2024-12-04 06:15:30

javadoc 中给出了示例。

例如,对于以八进制形式输出的整数,

如果给出“#”标志,则输出将始终以
基数指示符“0”。

或十六进制,

如果给出“#”标志,则输出将始终以
基数指示符“0x”。

对于浮点数,

如果给出了“#”标志,则小数点分隔符将始终为
存在。

There are examples given in the javadoc.

eg for an integer being output as octal,

If the '#' flag is given then the output will always begin with the
radix indicator '0'.

or as hex,

If the '#' flag is given then the output will always begin with the
radix indicator "0x".

For floating-point numbers,

If the '#' flag is given, then the decimal separator will always be
present.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文