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