示例#1
0
 public float ReadFloat()
 {
     return(NumberUtils.IntBitsToFloat(ReadInt()));
 }
示例#2
0
 public void WriteFloat(float v)
 {
     WriteInt((int)NumberUtils.FloatToIntBits(v));
 }
示例#3
0
 public double ReadDouble()
 {
     return(NumberUtils.LongBitsToDouble(ReadLong()));
 }