默认情况下,iOS上是否签名或未签名?
(我认为这将是一个很好的回答问题,但奇怪的是谷歌没有任何用处!)
解决方法
在大多数情况下,char在ARM上是未签名的(对于
performance reasons)并在其他平台上签名.
iOS与ARM的常规约定不同,默认情况下会对char进行签名. (特别是这与Android,where code compiled in the ndk defaults to unsigned char不同.)
这可以在xcode中更改,有一个’char’类型是无符号选项(默认为关闭).如果将其更改为“yes”,则xcode会将-funsigned-char传递给llvm. (检查xcode 5.0.2)
在iOS ABI Function Call Guide: ARM64 Function Calling Conventions中提到了iOS不同的原因,简单地说:
In iOS,as with other Darwin platforms,both char and wchar_t are signed types.