如何使用输入大小修饰符打印长类型值?

发布于 2024-12-07 04:39:28 字数 450 浏览 1 评论 0原文

这基本上就是我想要做的,

// ... some code, calculations, what have you ...
long timeToAdd = returnTimeToAddInLongFormat();

// lets output the long type now, and yes i need the width and precision.
System.out.printf("Time to add: %13.10ld", timeToAdd);

我已经阅读了围绕该主题的大部分谷歌搜索,并认为我理解如何从概念上做到这一点,但 JRE 不断向我抛出一个 UnknownFormatConversionException 并告诉我我的输入大小修饰符 l 不起作用。

还有其他方法可以做到这一点,还是我错过了一些小事情?

This is basically what I am trying to do

// ... some code, calculations, what have you ...
long timeToAdd = returnTimeToAddInLongFormat();

// lets output the long type now, and yes i need the width and precision.
System.out.printf("Time to add: %13.10ld", timeToAdd);

I've read most of the google searches around the topic and think I understand how to do it conceptually, but the JRE keeps throwing me a UnknownFormatConversionException and telling me my input size modifier l doesnt work.

Is there another way to do this, or did I miss something small?

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

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

发布评论

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

评论(1

半仙 2024-12-14 04:39:28

Java将所有整数值视为d,没有ld。甚至 byte 和 BigInteger 也是 d 类型。它还假设整数没有小数位。如果要显示 10 个零,可以先转换为 double 并使用 f

Java treats all integer values as d, there is no ld. Even byte and BigInteger is a d type. It also assumes integers have no decimal places. If you want to show 10 zeros, you can convert to double first and use f

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