gpt4 book ai didi

c++ - 无法将 big.Int 从 Go 序列化到 C++

转载 作者:搜寻专家 更新时间:2023-10-31 01:24:36 24 4
gpt4 key购买 nike

我有以下 Golang 函数:

//export getBigInt
func getBigInt() unsafe.Pointer {
return C.CBytes(big.NewInt(int64(7)).Bytes())
}

我正试图从 C 中调用:

    uint8_t *byte_array = (uint8_t *)getBigInt();

for (int i = 0; i < sizeof(byte_array); ++i) {
std::cout << (int)byte_array[i] << std::endl;
}

但是我得到的不是输出 0..., 7:

7
0
0
0
0
0
0
32

最佳答案

sizeof(byte_array) 为您提供指针的大小(在您的情况下为 8),而不是数组的长度。该数组可能少于 8 个元素,导致您的程序具有未定义的行为。

关于c++ - 无法将 big.Int 从 Go 序列化到 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58009651/

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