我正在尝试理解从此处获取的以下代码片段
float Q_rsqrt( float number )
{
long i;
float x2, y;
const float threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil floating point bit level hacking
i = 0x5f3759df - ( i >> 1 ); // ???
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
return y;
}
我不明白的是从浮点到长指针再回到浮点指针的转换。为什么我们不能简单地做i=y而不是先引用然后取消引用浮点数。
我是指针转换的新手,所以请多多包涵。