您的位置:首页 > 文旅 > 旅游 > 静态代码检查提示: The scope of the variable ‘success‘ can be reduced.

静态代码检查提示: The scope of the variable ‘success‘ can be reduced.

2024/12/23 10:01:36 来源:https://blog.csdn.net/qq_33210042/article/details/142091833  浏览:    关键词:静态代码检查提示: The scope of the variable ‘success‘ can be reduced.

静态代码检查提示如下:

这个修改的方法已经给出来了,就是定义的变量在循环外面了

比如它给出的案例

void f(int x)
{int i = 0;if (x) {// it's safe to move 'int i = 0;' herefor (int n = 0; n < 10; ++n) {// it is possible but not safe to move 'int i = 0;' heredo_something(&i);}}
}

应该修改为

void f(int x)
{if (x) {int i = 0;for (int n = 0; n < 10; ++n) {// it is possible but not safe to move 'int i = 0;' heredo_something(&i);}}
}

当然 我们的可能不完全是这样,比如一些变量定义在try catch 外面了,等等之后的

我们的做法就是检查变量的的范围即可。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com