반응형
reinterpret_cast
//reinterpret_cast
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
float f=-12.625;
float *pf = &f;
int *a;
a = reinterpret_cast<int *>(pf);
cout<<hex<<(*a)<<endl;
return 0;
}
* 디딤돌 C++ 38. 형변환에서
반응형
'C++ > 디딤돌 C++' 카테고리의 다른 글
static_cast [디딤돌 C++] (0) | 2016.04.17 |
---|---|
static_cast 를 할 수 없는 예 [디딤돌 C++] (0) | 2016.04.17 |
const_cast [디딤돌 C++] (0) | 2016.04.17 |
강제 형변환이 갖는 위험 요소 [디딤돌 C++] (0) | 2016.04.17 |
하향 캐스팅 [디딤돌 C++] (0) | 2016.04.14 |