如何设置 int64 的较低或较高值?

发布于 2024-11-02 18:06:01 字数 249 浏览 0 评论 0原文

我知道我可以通过以下方式获得更高的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半世晨晓 2024-11-09 18:06:01

要更改高 32 位,同时保持低位不变:

iGUID = (iGUID & 0xFFFFFFFF) | (inewlGUID << 32);

To change the upper 32 bits while keeping the lower ones unmodified:

iGUID = (iGUID & 0xFFFFFFFF) | (inewlGUID << 32);
旧时光的容颜 2024-11-09 18:06:01
iGUID = (static_cast<int64>(inewlGUID) << 32) | (iGUID & 0xffffffff);

这将保留任何现有内容。

您还可以获取 64 位值的地址并将其转换为指向 int32 的指针,然后可以为其添加下标并赋值。但是,通常建议这样做,因为它会使您的代码依赖于平台的字节顺序。

iGUID = (static_cast<int64>(inewlGUID) << 32) | (iGUID & 0xffffffff);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文