java
文章平均质量分 56
叶辞树
这个作者很懒,什么都没留下…
展开
-
android.os.BadParcelableException: ClassNotFoundException when unmarshalling
先学英语:unmarshalling 解组;数据编出今天遇到这样一个问题堆栈大致和这个链接里面的一样https://stackoverflow.com/questions/46274896/android-os-badparcelableexception-classnotfoundexception-when-unmarshalling-apCaused原创 2017-11-01 20:41:23 · 4516 阅读 · 0 评论 -
浮点运算结果出现误差原因分析及解决方案
如下C#代码:float a = 0.65f;float b = 0.6f;float c = a - b;此时c为多少?0.05?错误!此时c为0.0499999523!为什么?其根本原因是计算机所使用二进制01代码无法准确表示某些带小数位的十进制数据。 下面我们来分析下:我们知道将一个十进制数值转换为二进制数值,需要通过下面的计算方法:1. 整数...转载 2018-10-10 15:16:58 · 10853 阅读 · 0 评论