如何在 Salesforce Apex 中设置双精度格式

发布于 2024-12-17 13:48:58 字数 66 浏览 0 评论 0原文

我想以“12.30”等格式显示双精度,但它在 salesforce apex 中显示“12.0”。 有人可以帮助我吗?

I want to display double in format such as "12.30" but it display "12.0" in salesforce apex.
can any one help me?

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

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

发布评论

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

评论(3

季末如歌 2024-12-24 13:48:58

VisualForce 使用 java.text.MessageFormat 约定进行格式化。这是一个例子。将 MyDouble 变量替换为您自己的变量。

<apex:outputText value="{0,number,0.00}" >
    <apex:param value="{!MyDouble}" />
</apex:outputText>

VisualForce uses the java.text.MessageFormat conventions for formatting. Here's an example. Replace the MyDouble variable with your own.

<apex:outputText value="{0,number,0.00}" >
    <apex:param value="{!MyDouble}" />
</apex:outputText>
赠意 2024-12-24 13:48:58

您可以将 12.30 转换为 int,然后将其转换回 double。将其转换为 int 会截断分数。

double i = 10.345;
system.debug('this is i '+ i);
system.debug('this is i after fixing '+ (double)(integer)i);

给出:

10:04:26.129 (129990000)|USER_DEBUG|[16]|DEBUG|this is i 10.345
10:04:26.130 (130080000)|USER_DEBUG|[17]|DEBUG|this is i after fixing 10.0

You can cast the 12.30 as an int and then cast it back to double. Casting it to an int truncates the fraction.

double i = 10.345;
system.debug('this is i '+ i);
system.debug('this is i after fixing '+ (double)(integer)i);

gives:

10:04:26.129 (129990000)|USER_DEBUG|[16]|DEBUG|this is i 10.345
10:04:26.130 (130080000)|USER_DEBUG|[17]|DEBUG|this is i after fixing 10.0
嘿哥们儿 2024-12-24 13:48:58

当您创建字段时,我们必须定义它的小数位。尝试将该十进制数指定为 2。它会起作用。

When you are creating a field then we have to define it's decimal places. Try specifying that decimal number to 2. It will work.

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