gpt4 book ai didi

c++ - 如何在 C++ 中强制转换 void * 指针?

转载 作者:太空宇宙 更新时间:2023-11-04 14:54:29 25 4
gpt4 key购买 nike

<分区>

我有以下代码:

#include <iostream>
using namespace std;

int main() {
// your code goes here
float _t100;
void * _t200;
float _t300;
_t100 = -5.0;
_t200 = &_t100;
_t300 = *(float *)&_t200;
cout<<_t300;
return 0;
}

它打印 -1.61669。为什么?它应该打印 -5.0。

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