Having a friendly debate with a co-worker about this. We have some thoughts about this, but wondering what the SO crowd thinks about this?

link|improve this question

feedback

7 Answers

up vote 9 down vote accepted

One reason is there is no CLR support for a readonly local. Readonly is translated into the CLR/CLI initonly opcode. This flag can only be applied to fields and has no meaning for a local. In fact, applying it to a local will likely produce unverifiable code.

This doesn't mean that C# couldn't do this. But it would give two different meanings to the same language construct. The version for locals would have no CLR equivalent mapping.

link|improve this answer
7  
It actually has nothing to do with CLI support for the feature, because local variables are in no way exposed to other assemblies. The readonly keyword for fields needs to be supported by the CLI because its effect is visible to other assemblies. All it would mean is the variable only has one assignment in the method at compile time. – 280Z28 Sep 3 '09 at 2:06
feedback

Readonly means the only place the instance variable can be set is in the constructor. When declaring a variable locally it doesn't have an instance (it's just in scope), and it can't be touched by the constructor.

link|improve this answer
feedback

Addressing Jared's answer, it would probably just have to be a compile-time feature - the compiler would prohibit you from writing to the variable after the initial declaration (which would have to include an assignment).

Can I see value in this? Potentially - but not a lot, to be honest. If you can't easily tell whether or not a variable is going to be assigned elsewhere in the method, then your method is too long. I'd rather not see a language feature which reduces the impact of spaghetti methods - the developers responsible should simplify the methods instead.

For what it's worth, Java has this feature and I've very rarely seen it used - and where it is used, it gives me an impression of clutter rather than useful information.

link|improve this answer
I agree with the usefulness of it. That was one of the points we hit in our discussion. If readonly is really useful, you probably need to refactor. – Brian Genisio Jan 14 '09 at 17:38
2  
There's a difference between seeing whether or not a variable is modified in your method by sight and by the compiler. I see no objection to writing a method, stating my intent to not modify a variable, and having the compiler notify me when I accidentally do (perhaps with a typo a month later)! – A. Rex Jan 14 '09 at 18:06
4  
On the other hand, in F# all variables are read-only by default, and you have to use the 'mutable' keyword if you want to be able to change them. Since F# is a .NET language, I imagine it does the compile-time checking you describe. – Joel Mueller Jan 14 '09 at 18:43
@A.Rex: The question is really whether the benefit of getting the compiler to do that checking is worth the extra "fluff" when reading the code and not actually caring about it. – Jon Skeet Jan 14 '09 at 20:52
feedback

I was that coworker and it wasn't friendly! (just kidding)

I would not eliminate the feature because it's better to write short methods. It's a bit like saying you shouldn't use threads because they're hard. Give me the knife and let me be responsible for not cutting myself.

Personally, I wanted another "var" type keyword like "inv" (invarient) or "rvar" to avoid clutter. I've been studying F# as of late and find the immutable thing appealing.

Never knew Java had this.

link|improve this answer
feedback

I think it's a poor judgement on part of C# architects. readonly modifier on local variables helps maintain program correctness (just like asserts) and can potentially help the compiler optimize code (at least in the case of other languages). The fact that it's disallowed in C# right now, is another argument that some of the "features" of C# are merely an enforcement of personal coding style of its creators.

link|improve this answer
I agree on the "save the programmer from himself" part, but as for helping the compiler to optimize code, I hold the stance that the compiler can find out very well whether or not a variable changes over the course of the method and optimizes accordingly either way. Placing a 'readonly' flag before something the optimizer recognizes anyways for that purpose does not really benefit, yet potentially mislead. – ClearsTheScreen May 10 '11 at 12:37
feedback

I would like local readonly variables in the same manner as I like local const variables. But it has less priority than other topics.
Maybe its priority is the same reason for C# designers to not (yet!) implement this feature. But it should be easy (and backward compatible) to support local readonly variables in future versions.

link|improve this answer
feedback

I think that's because a function that has a readonly variable may never be called, and there's probably something about it going out of scope, and when would you need to?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.