如何获得图元的最小值和最大值?
How to get min and max value of primitives?
如何在变量中存储 i32
的最小值?
// Java Example :
int min = Integer.MIN_VALUE;
// C++ example
int min = INT_MIN;
我想做类似的事情:
let min: i32 = i32_MIN_VALUE;
如何在变量中存储 i32
的最小值?
// Java Example :
int min = Integer.MIN_VALUE;
// C++ example
int min = INT_MIN;
我想做类似的事情:
let min: i32 = i32_MIN_VALUE;