静态分析器错误地发现表达式“始终为 0”

发布于 2024-12-01 20:55:51 字数 482 浏览 1 评论 0原文

我有一个属性 noteName,声明如下:

@property (nonatomic,assign) IVNoteName noteName;

并定义如下:

@synthesize noteName;

但是当我尝试使用它时,静态分析器的行为很奇怪。

NSInteger noteNameOffsets[8] = {0,2,3,5,7,8,10};
midiValue += noteNameOffsets[[self noteName]]; //On this line,
//the analyzer tells me "The right operand to '+=' is always 0"

我已在该方法调用中记录了 [self noteName] 的值,发现了许多合理的非零值。此外,该代码的方法按预期工作。

I have a property, noteName, declared as follows:

@property (nonatomic,assign) IVNoteName noteName;

and defined as follows:

@synthesize noteName;

but when I attempt to use it, the static analyzer behaves strangely.

NSInteger noteNameOffsets[8] = {0,2,3,5,7,8,10};
midiValue += noteNameOffsets[[self noteName]]; //On this line,
//the analyzer tells me "The right operand to '+=' is always 0"

I have logged the value of [self noteName] in that method call, finding many sensible, non-zero values. Furthermore, the method this code is from works as intended.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

美男兮 2024-12-08 20:55:51

在 Xcode 4.2 中这不再是问题。

This is no longer an issue in Xcode 4.2.

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