你能显示 error:nil 的编译器警告吗?
是否有编译器设置可以警告这些?目前,我正在审查代码,并在看到它们时放入 #warning don't use error:nil
。
(我知道有时这样做是合适的,但也许有更好的方法让编译器检查草率的错误处理?)
Is there a compiler setting that can warn about these? Currently I'm reviewing code and putting in #warning don't use error:nil
whenever I see them.
(I know it's sometimes appropriate to do, but maybe there is a better way to have the compiler check sloppy error handling?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,由于 error:nil 是完全合法且完全合法的(正如您所说的),因此编译器无法检查它。
No, since error:nil is completely legal and totally legit (as you even say), there is no way for the compiler to check it.