pub const NAN: f32 = f32::NAN; // NaNf32
NAN
f32
不是数字 (NaN)。 请改用 f32::NAN。
f32::NAN
// 弃用的方式 let nan = std::f32::NAN; // 预期的方式 let nan = f32::NAN;