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.
我确实有这样的代码
data = new uint[2] { (uint)ul, (uint)(ul >> 32) };
xCode 在其上对ul >> 32带有主题警告的一段代码大喊大叫。如何解决?
ul >> 32
或者更好的是,如何禁用这些警告,因为我在 C++ 代码中有 16 个。
好吧,解决方案很简单。C# 中的ulong类型是 64 位数字,而在 iOS 中是 32 位数字。将 ios 中的类型更改为unsigned long long所有工作并根据需要编译后。
ulong
unsigned long long