Java Formatter - 什么是“#”为了?
根据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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
javadoc 中给出了示例。
例如,对于以八进制形式输出的整数,
或十六进制,
对于浮点数,
There are examples given in the javadoc.
eg for an integer being output as octal,
or as hex,
For floating-point numbers,