根据 Effective C++,“将对象地址转换为 char* 指针,然后对它们使用指针算术运算几乎总是会产生未定义的行为。”
对于普通的旧数据,这是真的吗?例如,在我很久以前编写的这个模板函数中,用于打印对象的位。它在 x86 上运行得非常好,但是……它是可移植的吗?
#include <iostream>
template< typename TYPE >
void PrintBits( TYPE data ) {
unsigned char *c = reinterpret_cast<unsigned char *>(&data);
std::size_t i = sizeof(data);
std::size_t b;
while ( i>0 ) {
i--;
b=8;
while ( b > 0 ) {
b--;
std::cout << ( ( c[i] & (1<<b) ) ? '1' : '0' );
}
}
std::cout << "\n";
}
int main ( void ) {
unsigned int f = 0xf0f0f0f0;
PrintBits<unsigned int>( f );
return 0;
}