gpt4 book ai didi

C# - 从两个 Int32 生成一个 Int64

转载 作者:可可西里 更新时间:2023-11-01 08:50:56 25 4
gpt4 key购买 nike

C# 中是否有一个函数接受两个 32 位整数 (int) 并返回一个 64 位整数 (long)?

听起来应该有一个简单的方法来做到这一点,但我找不到解决方案。

最佳答案

尝试以下操作

public long MakeLong(int left, int right) {
//implicit conversion of left to a long
long res = left;

//shift the bits creating an empty space on the right
// ex: 0x0000CFFF becomes 0xCFFF0000
res = (res << 32);

//combine the bits on the right with the previous value
// ex: 0xCFFF0000 | 0x0000ABCD becomes 0xCFFFABCD
res = res | (long)(uint)right; //uint first to prevent loss of signed bit

//return the combined result
return res;
}

关于C# - 从两个 Int32 生成一个 Int64,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/827252/

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