pub const MAX: isize = isize::MAX; // 9_223_372_036_854_775_807isize
👎Deprecating in a future Rust version: replaced by the
MAX
associated constant on this typeExpand description
The largest value that can be represented by this integer type. Use isize::MAX
instead.
Examples
// 弃用的方式
let max = std::isize::MAX;
// 预期的方式
let max = isize::MAX;
Run