gpt4 book ai didi

c - reinterpret_cast 的 C 等价物是什么?

转载 作者:太空狗 更新时间:2023-10-29 16:21:08 28 4
gpt4 key购买 nike

C++ 中 reinterpret_cast 的 C 等价物是什么?

最佳答案

int *foo;
float *bar;

// c++ style:
foo = reinterpret_cast< int * >(bar);

// c style:
foo = (int *)(bar);

关于c - reinterpret_cast 的 C 等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1382051/

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