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.
我正在为 haxe 3 移植一个扩展程序(HypTwitter)...我要替换什么
haxe.Int32.and(x,haxe.Int32.ofInt(0xFF))
对于有效的 Haxe 3?
Haxe 3 用于Int表示Int32值,因此您应该能够通过执行以下操作来解决您的问题:
Int
Int32
x & 0xFF