BigDecimal 赋值运算符
我在将一个大十进制值分配给另一个我正在尝试的大十进制值时遇到问题
,例如创建一个临时大十进制值并将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尚未指定
dropStartValue
或newCounterValue
的类型。如果它们都是 BigDecimal,那么这应该没问题:请注意,虽然这只是使两个变量引用同一个对象,但它是安全的,因为 BigDecimal 本身是不可变的。
如果这对您不起作用,请详细说明您遇到的问题(异常?编译时错误?)。
You haven't specified the type of either
dropStartValue
ornewCounterValue
. If they're both BigDecimals, then this should be fine: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?).
假设这是 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.