在 C# 中将二进制编码的十进制 (BCD) 放入一个字节中
我正在努力实现一个协议,它告诉我将 0 到 160 之间的小数放入一个字节中。 我假设,因为它没有指定它想要哪种类型的 BCD,所以我将把一个数字放入低半字节中,将另一个小数放入高半字节中。这意味着我得到 1 个字节,带有两位小数。 但是更大的值如何适合单个字节呢?例如160?
I'm working on implementing a protocol tha tells me to put decimals from 0 to 160 into a single byte.
I assume, since it doesn't specify what sort of BCD it wants, that I am to put one digit into the lower nibble and the other decimal into the higher nibble. Meaning I get 1 byte with a two-digit decimal.
But how would any larger value fit into a single byte? For example 160?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许它指的是“密集十进制”,我在电信 CDR 格式中使用 BCD 的经验正如您所描述的,其中 99 是可以用单个字节编码的最高十进制。但在维基百科上快速搜索后发现了 DPD。
http://en.m.wikipedia.org/wiki/Densely_Packed_Decimal
Perhaps it is referring to "Densely Packed Decimal" my experience with BCD in a telecommunications CDR format is as you describe, where 99 is the highest decimal that can be encoded in a single byte. But a quick Wikipedia search turned up DPD.
http://en.m.wikipedia.org/wiki/Densely_Packed_Decimal