Does anyone know or care to speculate why implicit typing is limited to local variables?
var thingy = new Foo();
But why not...
var getFoo() {
return new Foo();
}
|
Does anyone know or care to speculate why implicit typing is limited to local variables?
But why not...
| |||
|
feedback
|
|
Eric Lippert did an entire blog post on the subject. In summary, the main problem is that it would have required a major re-architecture of the C# compiler to do so. Declarations are currently processed in a single pass manner. This would require multiple passes because of the ability to form cycles between inferred variables. VB.net has roughly the same problem. | |||||||||||||
feedback
|
|
Jared has a fantastic link in his answer, to a fantastic topic. I think it does not answer the question explicitly. Why not?
The reason for this is: What if?
You could deduce that On a purely aesthetic level I find the var definitions on methods confuse things. Its one place where I think being explicit always helps, it protects you from shooting your self in the foot by accidentally returning a type that causes your signature and a ton of other dependent method signatures to change. Worst still, you could potentially change all you signatures of a method chain without even knowing you did so if you return the value of a method that returns object and happened to be lucky. I think var methods are best left for dynamic languages like Ruby | |||||||
feedback
|
|
Because it is much easyer to do. If you were to inference all types, one would need something like Hindley Milner type inference system which will in make your beloved C# into Haskel derivative language. | |||
|
feedback
|
|
Essentially, the issue you are running into is that C# (thus far) is a statically typed language. A local variable defined as var is still statically typed, but syntactically hidden. A method returning var, on the other hand, has many implications. It becomes more of an interface for usage, and you don't gain anything by using var. | |||
|
feedback
|
|
I think it's because the scope of that implied type is much wider and therefore more likely to cause problems than within the scope of a single method. | |||
|
feedback
|