是否可以将整数转换为uint32格式?
int x = 94;
Uint32 y = x.toUint32(); ///Pseudocode
最佳答案
DART没有无符号整数。
但是,您可以在每次操作后使用BigInt
和toUnsigned(32)。
是否可以将整数转换为uint32格式?
int x = 94;
Uint32 y = x.toUint32(); ///Pseudocode
最佳答案
DART没有无符号整数。
但是,您可以在每次操作后使用BigInt
和toUnsigned(32)。