BOOL 打印为 -65
我正在尝试在 Objective-C 中 NSLog a BOOL 。当我这样做时,它会打印为 0、7 或 -65。这是我的代码:
BOOL testBool;
NSLog(@"testBool = %i", testBool);
我也尝试过 %d 并将其转换为 int,但每次都得到相同的结果。谁能想到为什么会发生这种情况?
I am trying to NSLog a BOOL in Objective-C. When I do, it prints either as 0, 7, or -65. This is my code:
BOOL testBool;
NSLog(@"testBool = %i", testBool);
I've also tried %d and casting it as an int, but I get the same result every time. Can anyone think of why this would happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样声明就解决了问题:
Declaring it like this solved the problem: