pub const MAX_EXP: i32 = f32::MAX_EXP; // 128i32👎Deprecating in a future Rust version: replaced by the
MAX_EXP associated constant on f32Expand description
2 指数的最大可能乘方。
请改用 f32::MAX_EXP。
Examples
// 弃用的方式
let max = std::f32::MAX_EXP;
// 预期的方式
let max = f32::MAX_EXP;Run