如何设置 int64 的较低或较高值?
我知道我可以通过以下方式获得更高的 int 64 值:
int32 higher = (int32)(iGUID >> 32);
但我该如何设置它?
我尝试了这个,但它说“表达式必须是可修改的值”:
iGUID << 32 = inewlGUID;
我需要保留其他值(如果我设置较高的值,则应保留较低的值)。
I know i can get the higher Value of a int 64 with:
int32 higher = (int32)(iGUID >> 32);
But how can i set it?
I tried it with this, but it says "expression must be a modifiable value":
iGUID << 32 = inewlGUID;
I need to keep the other Value, ( if i set the higher value, the lower should keep).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要更改高 32 位,同时保持低位不变:
To change the upper 32 bits while keeping the lower ones unmodified:
这将保留任何现有内容。
您还可以获取 64 位值的地址并将其转换为指向
int32
的指针,然后可以为其添加下标并赋值。但是,通常不建议这样做,因为它会使您的代码依赖于平台的字节顺序。This will preserve any existing contents.
You can also take the address of the 64 bit value and cast it to a pointer to
int32
, which can then be subscripted and assigned to. This is usually not recommended, however, because it will make your code depend on the platform's byte order.