微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

迭代器变量超出C#的范围

为什么我用C#写这个:

for(int myVar = 0; myVar<10; myVar++)
{
//do something here
}

//then,if I try:
int myVar = 8;
//I get some error that the variable is already declared.

//but if I try:
Console.WriteLine(myVar);
//then I get the error that the variable is not declared.

我最常说的有点混乱.有谁知道为什么C#编译器会这样做?

解决方法

该规则以及其他几个相关规则将在 this blog post of Eric Lippert’s中讨论.

这里违反的特定规则是:

2) It is illegal to have two local variables of the same name in the same local variable declaration space or nested local variable declaration spaces.

特别值得注意的是,关于规则存在的原因如下:

the purpose of all of these rules is to prevent the class of bugs in which the reader/maintainer of the code is tricked into believing they are referring to one entity with a simple name,but are in fact accidentally referring to another entity entirely. These rules are in particular designed to prevent nasty surprises when performing what ought to be safe refactorings.

通过允许你所描述的内容,它可以产生看似良性的重构,例如将for循环移动到另一个声明之后,导致极其不同的行为.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐