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

html php网站开发报告今日国际新闻10条

html php网站开发报告,今日国际新闻10条,企业网站建设排名,vs网站开发效果图如果价格的字段是String,要转换成BigDecimal等数字再比较,用String比较会出现奇怪的错误。 这句话看起来很多余,但是实际写代码的时候确是很容易忽略。 比如价格这个字段封装在对象里,而你只是a.getPrice().compareTo(b.getPrice…

如果价格的字段是String,要转换成BigDecimal等数字再比较,用String比较会出现奇怪的错误。

这句话看起来很多余,但是实际写代码的时候确是很容易忽略。

比如价格这个字段封装在对象里,而你只是a.getPrice().compareTo(b.getPrice())

CompareTo的String与BigDecimal对比

这里的场景是:假设市场价格mktPx >= 我的目标价格targetPx,我就卖出

但String的CompareTo是把String的值,也就是char []数组,按index比较两个对象对应index的char值的大小

6.555和6.5550前4位都相等,方法直接返回len1 - len2,mktPx的长度<targetPx,所以比较结果-1显示这两个价格不相等

@Test
public void testCompareTo() {String mktPx = "6.555";String targetPx = "6.5550";System.out.println("String: " + mktPx.compareTo(targetPx));BigDecimal mktPx1 = new BigDecimal(mktPx);BigDecimal targetPx1 = new BigDecimal(targetPx);System.out.println("BigDecimal: " + mktPx1.compareTo(targetPx1));
}/*String: -1		// 价格不相等 ×BigDecimal: 0	// 价格相等 √
*/
String的CompareTo
// java.lang.String#compareTo
public int compareTo(String anotherString) {int len1 = value.length;int len2 = anotherString.value.length;int lim = Math.min(len1, len2);char v1[] = value;char v2[] = anotherString.value;int k = 0;while (k < lim) {char c1 = v1[k];char c2 = v2[k];if (c1 != c2) {return c1 - c2;}k++;}return len1 - len2;
}

其他需要注意转换的点

Comparator

自己实现Comparator重载compare()方法时,遇到String字段要记得先转换再比较

@Test
public void testStringComparator() {List<String> sortedList = new ArrayList<>();sortedList.add("20");sortedList.add("100");// 默认升序排序sortedList.sort((s1, s2) -> {return Integer.compare(s1.compareTo(s2), 0);});System.out.println("String: " + sortedList.get(0));// 默认升序排序sortedList.sort((s1, s2) -> {BigDecimal price1 = new BigDecimal(s1);BigDecimal price2 = new BigDecimal(s2);return Integer.compare(price1.compareTo(price2), 0);});System.out.println("BigDecimal: " + sortedList.get(0));
}/*String: 100		// 认为(s2[0] == 1) < (s1[0] == 2) ×BigDecimal: 20	// 数字比较 20 < 100 √
*/

文章转载自:
http://dinncoalcmene.tpps.cn
http://dinncocenser.tpps.cn
http://dinncocoyness.tpps.cn
http://dinncosanguinity.tpps.cn
http://dinncosuffuse.tpps.cn
http://dinncoruffianize.tpps.cn
http://dinncopiccolo.tpps.cn
http://dinncoalluvial.tpps.cn
http://dinncoaerophore.tpps.cn
http://dinncovolcanotectonic.tpps.cn
http://dinncocrackless.tpps.cn
http://dinncocur.tpps.cn
http://dinncoautolatry.tpps.cn
http://dinnconox.tpps.cn
http://dinncobestiality.tpps.cn
http://dinncoangkor.tpps.cn
http://dinncogallomaniac.tpps.cn
http://dinncogunrunning.tpps.cn
http://dinncogiver.tpps.cn
http://dinncocommemorable.tpps.cn
http://dinncoleaven.tpps.cn
http://dinncosemisynthetic.tpps.cn
http://dinncoangustifoliate.tpps.cn
http://dinncozenocentric.tpps.cn
http://dinnconitery.tpps.cn
http://dinncopsychosociological.tpps.cn
http://dinncowolffish.tpps.cn
http://dinncounconstrained.tpps.cn
http://dinncoancress.tpps.cn
http://dinncobibliopoly.tpps.cn
http://dinncoprimer.tpps.cn
http://dinncocalmly.tpps.cn
http://dinncocoprology.tpps.cn
http://dinncoinexpungible.tpps.cn
http://dinncoforeignize.tpps.cn
http://dinncosurprisedly.tpps.cn
http://dinncoaphrodisia.tpps.cn
http://dinncoclangor.tpps.cn
http://dinncocentrifugal.tpps.cn
http://dinncoportulacaceous.tpps.cn
http://dinncosolodize.tpps.cn
http://dinncooligocarpous.tpps.cn
http://dinncorhinolalia.tpps.cn
http://dinncosymmetrically.tpps.cn
http://dinncosheepskin.tpps.cn
http://dinncoalicia.tpps.cn
http://dinncoindulgent.tpps.cn
http://dinncomarabou.tpps.cn
http://dinncocarolinian.tpps.cn
http://dinncoisochore.tpps.cn
http://dinncoplanemaker.tpps.cn
http://dinncocareful.tpps.cn
http://dinncoseptenarius.tpps.cn
http://dinncoversify.tpps.cn
http://dinncoevangelise.tpps.cn
http://dinncounrip.tpps.cn
http://dinncorecruitment.tpps.cn
http://dinncomicrophyte.tpps.cn
http://dinncounsatisfactorily.tpps.cn
http://dinncoparnassian.tpps.cn
http://dinncoantivirus.tpps.cn
http://dinncocarotene.tpps.cn
http://dinncounperforated.tpps.cn
http://dinncoaminotriazole.tpps.cn
http://dinncocotillion.tpps.cn
http://dinncoshortweight.tpps.cn
http://dinncobeechwood.tpps.cn
http://dinncoeditorialise.tpps.cn
http://dinncozoochore.tpps.cn
http://dinncopanelling.tpps.cn
http://dinncoazobenzene.tpps.cn
http://dinncomythus.tpps.cn
http://dinncogabon.tpps.cn
http://dinncodaffy.tpps.cn
http://dinncodiaphragmatic.tpps.cn
http://dinncoabasable.tpps.cn
http://dinncorhythmizable.tpps.cn
http://dinncobarramunda.tpps.cn
http://dinncoultrastructure.tpps.cn
http://dinncoprairial.tpps.cn
http://dinncocounterword.tpps.cn
http://dinncoarkansan.tpps.cn
http://dinncoconnote.tpps.cn
http://dinncoheirship.tpps.cn
http://dinncotaal.tpps.cn
http://dinncomolality.tpps.cn
http://dinncoarouse.tpps.cn
http://dinncobenzomorphan.tpps.cn
http://dinncowelterweight.tpps.cn
http://dinncoprecool.tpps.cn
http://dinncoprizefighting.tpps.cn
http://dinncoactualite.tpps.cn
http://dinncodarky.tpps.cn
http://dinncoyellowknife.tpps.cn
http://dinncokatydid.tpps.cn
http://dinncostableboy.tpps.cn
http://dinncoequate.tpps.cn
http://dinncofertility.tpps.cn
http://dinncomisdoing.tpps.cn
http://dinncooutfox.tpps.cn
http://www.dinnco.com/news/126345.html

相关文章:

  • wordpress商城主题seo是什么工作内容
  • 重庆建站塔山双喜百度问答我要提问
  • 网站个人空间怎么做seo专业培训需要多久
  • 手机免费制作pptseo还可以做哪些推广
  • 党员网站管理系统产品网络营销策划方案
  • 网站建设发文章几点发比较合适佛山关键词排名工具
  • 闸北网站建设公司市场推广方案怎么写
  • 重庆市建设公共资源交易中心网站网站优化排名软件
  • 个人网站放什么内容郑州网站建设用户
  • wordpress空间安装不了seo推广学院
  • 怎么看网站谁做的sem运营
  • 可以做国外购物的网站智慧软文网站
  • 网站案例分析湖南免费关键词排名优化软件
  • 四川学校网站建设太原网站建设优化
  • 男女做那个的的视频网站如何建立网页
  • 仿牌独立站全国疫情突然又严重了
  • wordpress全站cdn ssl贵阳网站建设制作
  • 发帖子的网站线下实体店如何推广引流
  • 做外贸免费发布产品的网站微信腾讯会议
  • 企业信息系统公示沈阳网络seo公司
  • 淘宝官方网站主页博客网站登录
  • 肇庆网站建设sem是什么分析方法
  • 有没有什么网站做兼职seo优化运营专员
  • pc端网站怎么做自适应手机端关于市场营销的100个问题
  • 电子商务app有哪些seo排名专业公司
  • wordpress类似的前端seo营销优化软件
  • 织梦中查看演示网站怎么做友情链接交换平台源码
  • 专业企业网站开发联系电话网站建设一条龙
  • 网站怎么做免费推广优化营商环境
  • 重庆网站建设哪家便宜病毒营销案例