gpt4 book ai didi

c# - 从 C# 中的恒定位宽扩展的符号

转载 作者:行者123 更新时间:2023-11-30 20:11:17 25 4
gpt4 key购买 nike

我有一个长度为 5 位的值。 4 位确定数字,第 5 位确定符号,其中包含 -16 和 +15 之间的任何值。如何在 C# 中完成从恒定位宽扩展的符号?我知道在 C 中,我可以使用类似以下的方法来完成此操作:

int x; // convert this from using 5 bits to a full int
int r; // resulting sign extended number goes here
struct {signed int x:5;} s;
r = s.x = x;

如何在 C# 中执行类似的操作?

最佳答案

你的意思不是很清楚,但可以简单到:

int fiveBits = normal & 0x1f;

反之:

int normal =  fiveBits < 16 ? fiveBits : fiveBits | -32;

如果您可以建议一些原始输入和所需的输出,那将会有所帮助。

关于c# - 从 C# 中的恒定位宽扩展的符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3981106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com