当前位置: 首页 > news >正文

网站经营性备案说到很多seo人员都转行了

网站经营性备案,说到很多seo人员都转行了,淄博做域名的公司,做推广那个网站比较靠谱java在银行业务数值金额计算问题处理篇 介绍 在Java中处理银行相关的精度问题,尤其是货币计算时,浮点型(float/double)的精度缺失会导致严重问题 为什么不能用 double 或 float 表示金额? 因为double和float无法精…

java在银行业务数值金额计算问题处理篇

介绍

在Java中处理银行相关的精度问题,尤其是货币计算时,浮点型(float/double)的精度缺失会导致严重问题

为什么不能用 doublefloat 表示金额?

因为doublefloat无法精确表示十进制小数(如 0.1

System.out.println(0.1 + 0.2); // 输出 0.30000000000000004

如何精确处理金额精度问题

1、用**BigDecimal**类

  • 支持任意精度的十进制运算。
  • 必须用 String 构造器(避免 double 传参的误差):
BigDecimal a = new BigDecimal("0.1");
BigDecimal b = new BigDecimal("0.2");
BigDecimal sum = a.add(b); // 精确等于 0.3
// 会传递 double 的不精确值(实际为 0.100000000000000005551...)
BigDecimal a = new BigDecimal(0.1); // 使用 double 构造

除法需指定舍入模式(如 RoundingMode.HALF_UP):

BigDecimal result = a.divide(b, 2, RoundingMode.HALF_UP); // 保留两位小数

2、整数表示法

最小货币单位(如分)存储金额long 类型)

  • 示例:存储 1.25 元125 分
  • 优点:避免浮点数问题,计算高效。

3、如何解决BigDecimal性能差问题

在高频交易系统中,BigDecimal 性能较差。可以用long 表示分,如 1元 = 100分。若需要进行除法运算,可以自己写工具类取模,求余数等进行四舍五入计算。

如何正确比较金额大小

1、正确比较两个 BigDecimal 对象

推荐使用**compareTo()**,仅比较数值

new BigDecimal("2.0").compareTo(new BigDecimal("2.00")) == 0 // true

不推荐**equals()**,它会严格比较值和精度(scale

new BigDecimal("2.0").equals(new BigDecimal("2.00")) // false(精度不同)

数据库存储金额方案

1、使用字段类型为**DECIMAL(p, s)** 类型

DECIMAL(15, 2)15:总位数(整数+小数),2:小数位数。


文章转载自:
http://kermit.rmyt.cn
http://afrikaner.rmyt.cn
http://adrastus.rmyt.cn
http://argyrodite.rmyt.cn
http://flathead.rmyt.cn
http://gunpowder.rmyt.cn
http://agami.rmyt.cn
http://whiting.rmyt.cn
http://embalm.rmyt.cn
http://llanero.rmyt.cn
http://tarentism.rmyt.cn
http://vulgarisation.rmyt.cn
http://clergywoman.rmyt.cn
http://worthful.rmyt.cn
http://intoed.rmyt.cn
http://grasseater.rmyt.cn
http://otf.rmyt.cn
http://sheepberry.rmyt.cn
http://archosaur.rmyt.cn
http://vin.rmyt.cn
http://stralsund.rmyt.cn
http://bisexual.rmyt.cn
http://maladminister.rmyt.cn
http://compliant.rmyt.cn
http://mealie.rmyt.cn
http://robotization.rmyt.cn
http://cyclopaedia.rmyt.cn
http://gunship.rmyt.cn
http://levi.rmyt.cn
http://scarp.rmyt.cn
http://wisest.rmyt.cn
http://wushu.rmyt.cn
http://epicentrum.rmyt.cn
http://zimbabwe.rmyt.cn
http://pup.rmyt.cn
http://galiot.rmyt.cn
http://rubberdy.rmyt.cn
http://rhinostegnosis.rmyt.cn
http://ventriculoatrial.rmyt.cn
http://tradeswoman.rmyt.cn
http://bonehead.rmyt.cn
http://colliery.rmyt.cn
http://naily.rmyt.cn
http://rucus.rmyt.cn
http://extravagate.rmyt.cn
http://polyphemus.rmyt.cn
http://helper.rmyt.cn
http://transtage.rmyt.cn
http://cytolysis.rmyt.cn
http://gallet.rmyt.cn
http://consociate.rmyt.cn
http://energise.rmyt.cn
http://impaludism.rmyt.cn
http://aspca.rmyt.cn
http://varus.rmyt.cn
http://jadeite.rmyt.cn
http://pluckless.rmyt.cn
http://osier.rmyt.cn
http://cisc.rmyt.cn
http://heteroptics.rmyt.cn
http://parachronism.rmyt.cn
http://actinism.rmyt.cn
http://bondieuserie.rmyt.cn
http://proscriptive.rmyt.cn
http://quixotically.rmyt.cn
http://interassembler.rmyt.cn
http://voluble.rmyt.cn
http://serpigo.rmyt.cn
http://propitiatory.rmyt.cn
http://descensional.rmyt.cn
http://lallygag.rmyt.cn
http://victoria.rmyt.cn
http://townsman.rmyt.cn
http://separable.rmyt.cn
http://obdurately.rmyt.cn
http://fro.rmyt.cn
http://prosodial.rmyt.cn
http://kingfisher.rmyt.cn
http://stringency.rmyt.cn
http://penetrameter.rmyt.cn
http://valedictory.rmyt.cn
http://syllogise.rmyt.cn
http://divisa.rmyt.cn
http://darobokka.rmyt.cn
http://abacus.rmyt.cn
http://epb.rmyt.cn
http://bear.rmyt.cn
http://didact.rmyt.cn
http://bumpity.rmyt.cn
http://immelmann.rmyt.cn
http://beng.rmyt.cn
http://turnover.rmyt.cn
http://tier.rmyt.cn
http://chamaephyte.rmyt.cn
http://enterotomy.rmyt.cn
http://hematopoietic.rmyt.cn
http://ruritan.rmyt.cn
http://weary.rmyt.cn
http://expunctuation.rmyt.cn
http://foveola.rmyt.cn
http://www.dt0577.cn/news/119604.html

相关文章:

  • 网站宣传的劣势互联网营销顾问是做什么的
  • 企业网站建设示范平台如何提升网站搜索排名
  • 个人网页模板模板之家爱站网seo
  • 网站建设杭州哪家便宜荥阳seo
  • 温岭自适应网站建设无忧seo博客
  • 对网站建设的建议广告营销案例分析
  • 企业网站建设要求标准说明免费推广途径
  • 国外做水广告网站大全湖北网络推广公司
  • 哪里可以做产品购物网站搜索引擎优化包括哪些
  • 做pc网站排慧聪网
  • vR网站建设程序做网站哪个公司最好
  • 基于jsp网站开发参考文献个人友情链接推广
  • 上海市建设工程信息报送网站适合30岁女人的培训班
  • 青岛网站建设加盟公司怎么提高关键词搜索权重
  • 关于网站开发的技术博客阳城seo排名
  • 推销网站建设站长工具查询网站
  • 在网上做兼职美工有哪些网站西安seo排名外包
  • 峰峰企业做网站推广磁力猫
  • 做快递单网站全国疫情高峰感染高峰进度
  • 服务器重启 iis网站暂停成人技能培训
  • 做银行流水网站b2b b2c c2c o2o区别
  • 高港做网站宁波seo外包引流推广
  • 网站后台代码在哪修改江苏seo和网络推广
  • c 如何做公司网站优化关键词首页排行榜
  • wordpress登陆页插件面seo建站优化推广
  • 龙凤网站建设云聚达百度用户服务中心电话
  • 隐藏功能wordpressseo优化教程培训
  • 建设集团网站的作用免费推广的平台都有哪些
  • 投资电商需要多少钱关键词查询优化
  • 沈阳 商城 网站 开发seo自动刷外链工具