BOOL 打印为 -65

发布于 2025-01-02 22:43:24 字数 204 浏览 2 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画离情绘悲伤 2025-01-09 22:43:24

像这样声明就解决了问题:

BOOL testBool = NO;

Declaring it like this solved the problem:

BOOL testBool = NO;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文