gpt4 book ai didi

c++ - 如何将结构转换为字节*

转载 作者:可可西里 更新时间:2023-11-01 10:01:34 38 4
gpt4 key购买 nike

尝试将我的结构转换为 byte* 时:

objNDSDriver.StartFn((byte*)objSTNDSFTPDriverInfo);

我收到错误:

error C2440: 'type cast' : cannot convert from 'STNDSFTPDriverInfo' to 'byte *'

最佳答案

你应该获取结构的地址,并且可能使用 reinterpret_cast运算符(operator):

objNDSDriver.StartFn(reinterpret_cast<byte *>(&objSTNDSFTPDriverInfo));

关于c++ - 如何将结构转换为字节*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4529783/

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