BigDecimal 赋值运算符

发布于 2024-08-13 11:52:05 字数 276 浏览 2 评论 0原文

我在将一个大十进制值分配给另一个我正在尝试的大十进制值时遇到问题

,例如创建一个临时大十进制值并将 0 添加到另一个大十进制数

BigDecimal temp = new BigDecimal(0);
dropStartValue =  temp.add(newCounterValue);

但是,我只想简单地对大十进制数执行以下操作:

dropStartValue = newCounterValue

I have a problem with assigning one big decimal value to another

I am trying such as creating one temp big decimal and add 0 to another big decimal

BigDecimal temp = new BigDecimal(0);
dropStartValue =  temp.add(newCounterValue);

However, I only want simply do the operation below on big decimals:

dropStartValue = newCounterValue

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

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

发布评论

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

评论(2

一城柳絮吹成雪 2024-08-20 11:52:05

您尚未指定 dropStartValuenewCounterValue 的类型。如果它们都是 BigDecimal,那么这应该没问题:

dropStartValue = newCounterValue;

请注意,虽然这只是使两个变量引用同一个对象,但它是安全的,因为 BigDecimal 本身是不可变的。

如果这对您不起作用,请详细说明您遇到的问题(异常?编译时错误?)。

You haven't specified the type of either dropStartValue or newCounterValue. If they're both BigDecimals, then this should be fine:

dropStartValue = newCounterValue;

Note that although that's just making both variables refer to the same object, it's safe because BigDecimal itself is immutable.

If that's not working for you, please give details of what problems you're seeing (exceptions? compile-time errors?).

滥情稳全场 2024-08-20 11:52:05

假设这是 Java,并且 newCounterValue 是整数类型或其框,则 dropStartValue = new BigDecimal(newCounterValue); 应该执行您想要的操作。

Assuming this is Java ans newCounterValue is an integer type or a box thereof, dropStartValue = new BigDecimal(newCounterValue); should do what you want.

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