比较 (int)double 和 (int)int 时出现异常
Possible Duplicate:
Exception when comparing an (int)double and (int)int
IGNORE THIS POST. ACCIDENTLY REPOSTED
Sorry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该是,
从您的代码中,我认为字符串大小为
6
个字符(0 到 4 和第 5 个字符为nul
)。在第 4 个位置和第 5 个位置插入 2 位数字将覆盖nul
。进行交叉验证,因为我看到你的代码时做出了猜测。
should be,
From your code, I suppose the string size is
6
characters (0 to 4 and 5th character asnul
). Inserting 2 digit at 4th position and 5th position would overwritenul
.Do cross verify, as I have made a guess seeing your code.