Kio*_*han 3 go

我想将类似(*float32)的东西转换为(*int32)

我这样做

var f float32 = 0.0
var p *int32 = (*int32)(&f) // error!
// cannot convert &f (type *float32) to type *int32

我怎么能这样做,就像我在C中所做的那样

float f = 0.0;
int *ip = (*int) &fp;