Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

7 Answers

up vote 10 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.

share|improve this answer
11  
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
3  
I think you've just shifted the question to why the CLR does not support this rather than providing the rational behind it. It does allow for const locals, so it would be reasonable to expect readonly locals as well. – Chad Schouggins Aug 16 '12 at 16:25

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 (using the final modifier) and I've very rarely seen it used - and where it is used, it gives me an impression of clutter rather than useful information.

share|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
5  
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
8  
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
Consider the following definition int arr[] = new int[numItems];, placed just before a loop that passes arr to an unfamiliar method. Even it's clear that arr always points to the same array, it might not be clear whether that is because there was never any need to make it point elsewhere, or because the called method relies upon its always being the same instance. That distinction may become important if e.g. future code requires that the code deal with arrays of different sizes that aren't known in advance. – supercat Nov 19 '12 at 17:57

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
1  
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

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.

share|improve this answer

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?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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