我將內存地址從double轉換爲整數。 即使他們指向相同的地址爲什麼值不同?具有不同值的相同內存地址的指針
#include<iostream>
using namespace std;
int main()
{
double d = 2.5;
auto p = (int*)&d;
auto q = &d;
cout<<p<<endl; // prints memory address 0x7fff5fbff660
cout<<q<<endl; // print memory address 0x7fff5fbff660
cout<<*p<<endl; //prints 0
cout<<*q<<endl; // prints 2.5
return 0;
}
但是,爲什麼值是不同的
0x7fff5fbff660
0x7fff5fbff660
0
2.5
Program ended with exit code: 0
非常感謝,我現在有點清楚 –