f0312.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0312.cpp
  3. // 空间实体的理解
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. int main(){
  9.   float f = 34.5;
  10.   int* ip = reinterpret_cast<int*>(&f);
  11.   cout<<"float address: "<<&f<<"=>"<<f<<endl;
  12.   cout<<"  int address: "<<ip<<"=>"<<*ip<<endl;
  13.   *ip = 100;
  14.   cout<<"  int: "<<*ip<<endl;
  15.   cout<<"float: "<<f<<endl;
  16. }//====================================
  17.