Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在flex中将负数转换为十六进制?
例如:-73715 ...此数字的十六进制值为 FFFEE00D
我怎样才能在 flex 中得到这个?
uint(yourInt).toString(16)
应该做。