It looks strange especially for C++ developers. In C++ we used to mark parameter as const in order to be sure that its state will not be changed in method. There are also other C++ specific reasons also like passing const ref in order to pass by ref and be sure that state will not be changed. But why we can't mark as const method parameters in C# ?

Why I can't declare my method like this :

    ....  
    static void TestMethod1(const MyClass val)
    {}
    ....
    static void TestMethod2(const int val)
    {}
    ....
link|improve this question

78% accept rate
It was always just a safety-catch feature in C++, and never truly integral to the language as I saw it. C# devs didn't think it added much value evidently. – Noldorin Jul 16 '10 at 8:13
2  
A bigger discussion at this question: "Const-correctness in c#": stackoverflow.com/questions/114149/const-correctness-in-c – tenpn Jul 16 '10 at 9:52
There is for value types [out/ref], but not reference types. It's a interesting question. – kenny Jul 16 '10 at 10:03
@kenny Sorry what you mean "there is for value types" ? You can't have const parameters no matter for value or reference types – Incognito Jul 16 '10 at 10:30
How could this question have both the C# and language-agnostic tags? – CraigJ Aug 8 '10 at 10:13
feedback

4 Answers

up vote 20 down vote accepted

In addition to the other good answers, I'll add yet another reason why to not put C-style constness into C#. You said:

we mark parameter as const in order to be sure that its state will not be changed in method.

If const actually did that, that would be great. Const doesn't do that. The const is a lie!

Const doesn't provide any guarantee that I can actually use. Suppose you have a method that takes a const thing. There are two code authors: the person writing the caller and the person writing the callee. The author of the callee has made the method take a const. What can the two authors assume is invariant about the object?

Nothing. The callee is free to cast away the const and mutate the object, so the caller has no guarantee that calling a method that takes a const actually will not mutate it. Similarly, the callee cannot assume that the contents of the object will not change throughout the action of the callee; the callee could call some mutating method on a non const alias of the const object, and now the so-called const object has changed.

C-style const provides no guarantee that the object will not change, and is therefore broken. Now, C already has a weak type system in which you can do a reinterpret cast of a double into an int if you really want to, so it should not be a surprise that it has a weak type system with respect to const as well. But C# was designed to have a good type system, a type system where when you say "this variable contains a string" that the variable actually contains a reference to a string (or null). We absolutely do not want to put a C-style "const" modifier into the type system because we don't want the type system to be a lie. We want the type system to be strong so that you can reason correctly about your code.

Const in C is a guideline; it basically means "you can trust me to not try to mutate this thing". That shouldn't be in the type system; the stuff in the type system should be a fact about the object that you can reason about, not a guideline to its usage.

Now, don't get me wrong; just because const in C is deeply broken doesn't mean that the whole concept is useless. What I would love to see is some actually correct and useful form of "const" annotation in C#, an annotation that both humans and compilers could use to help them understand the code, and that the runtime could use to do things like automatic paralellization and other advanced optimizations.

For example, imagine if you could "draw a box" around a hunk of code and say "I guarantee that this hunk of code performs no mutations to any field of this class" in a way that could be checked by the compiler. Or draw a box that says "this pure method mutates the internal state of the object but not in any way that is observable outside the box". Such an object could not be safely multi-threaded automatically but it could be automatically memoized. There are all kinds of interesting annotations we could put on code that would enable rich optimizations and deeper understanding. We can do way better than the weak C-style const annotation.

However, I emphasize that this is just speculation. We have no firm plans to put this sort of feature into any hypothetical future version of C#, if there even is one, which we have not announced one way or the other. It is something I would love to see, and something which the coming emphasis on multi-core computing might require, but none of this should be in any way construed to be a prediction or a guarantee of any particular feature or future direction for C#.

Now, if what you want is merely an annotation on the local variable that is a parameter that says "the value of this parameter doesn't change throughout the method", then, sure, that would be easily done. We could support "readonly" locals and parameters that would be initialized once, and a compile-time error to change in the method. The variable declared by the "using" statement is already such a local; we could add an optional annotation to all locals and parameters to make them act like "using" variables. It's never been a very high priority feature so it has never been implemented.

link|improve this answer
5  
@ybungalobill: First off, a "guarantee" that has no specified consequences and is enforced by no one is not actually a useful guarantee. People cast away constness successfully all the time without every worrying that doing so is technically "undefined" by the specification. Second, you addressed only half of my point. It is still perfectly well-defined to observe a change to a "const" referenced object when the object is modified via a non-const alias. A so-called "const" object can legally be observed to change. For both reasons "const" is not reliable and is thereby broken. – Eric Lippert Dec 16 '10 at 16:33
4  
@Alessandro: Your argument is: because there is a difference between incompetent people and evil people, the C# team should add language features that are expensive, difficult, logically ill-founded, inconsistent with the existing type system, and not actually useful for many modern problems in the space? I am not seeing how the conclusion follows from the premise. – Eric Lippert Dec 16 '10 at 16:43
4  
@Joe: It is precisely the trend towards concurrency that motivates doing the feature right. It would be the height of foolishness to build a broken version of const correctness into the language that did not actually meet the needs of developers doing concurrent programming. – Eric Lippert Dec 16 '10 at 16:44
5  
@ybungalobill: I think I understand const extremely well, thank you very much. My point, that I seem to not be making very well despite stating it baldly several times is: yes, const does not do what I want. I don't have any use for an "access control" system as you are describing; we have plenty of existing mechanisms for that sort of thing. What I want and need is a guarantee that I can ask a queue "are you empty?" and if the answer is "no" then I know I can get the first element. A const reference to a queue does not provide that guarantee. It should, to be a useful feature. – Eric Lippert Dec 16 '10 at 17:00
10  
@ybungalobill: We're having a civil conversation here about the technical pros and cons of various aspects of language design. There is absolutely no call for you to insinuate that there is some sort of conspiracy or "political" motivation here, as you've done several times now. Your doing so does not make your technical arguments (which are entirely reasonable) seems stronger; it makes them seem weaker. Attack my technical position all you want; if you want people to take you seriously, don't attack my person or impugn my motives. My motives are to make C# the best language I can. – Eric Lippert Dec 16 '10 at 17:30
show 50 more comments
feedback

One of the reasons why there's no const correctness in C# is because it doesn't exist at the runtime level. Remember that C# 1.0 did not have any feature unless it was part of the runtime.

And several reasons why the CLR does not have a notion of const correctness are for example:

  1. It complicates the runtime; besides, the JVM didn't have it either, and the CLR basically started as a project to create a JVM-like runtime, not a C++-like runtime.
  2. If there is const correctness at the runtime level, there should be const correctness in the BCL, otherwise the feature is pretty much pointless as far as the .NET Framework is concerned.
  3. But if the BCL requires const correctness, every language on top of the CLR should support const correctness (VB, JavaScript, Python, Ruby, F#, etc.) That's not going to happen.

Const correctness is pretty much a language feature only present in C++. So it pretty much boils down to the same argumentation as to why the CLR does not require checked exceptions (which is a Java language-only feature).

Also, I don't think you can introduce such a fundamental type system feature in a managed environment without breaking backward compatibility. So don't count on const correctness ever entering the C# world.

link|improve this answer
Are you sure that JVM doesn't have it. As I know it has it. You can try public static void TestMethod(final int val) in Java. – Incognito Jul 16 '10 at 8:38
2  
Final is not really const. You can still change fields on the reference IIRC, just not the value/reference itself. (Which is passed by value anyway, so it's more a compiler trick to prevent you from changing the parameter value.) – Ruben Jul 16 '10 at 8:46
1  
your 3rd bullet is only partlly true. having const parameters for BCL calls would not be a breaking change since they merely describe the contract more precisely. "This method will not change the state of the object" in contrast to "This method require you to pass a const value" which would be breaking – Rune FS Jul 16 '10 at 9:30
@Rune FS: What is the point then from a language point of view, if it is not enforced? If it's for documentation purposes, you can already indicate that with an XML doc comment. – Ruben Jul 16 '10 at 11:44
1  
It is enforced inside the method so it wouldn't be a breaking change to introduce it in the BCL. – Rune FS Jul 16 '10 at 15:24
show 3 more comments
feedback

const means "compile-time constant" in C#, not "readonly but possibly mutable by other code" as in C++. A rough analog of C++ const in C# is readonly, but that one is only applicable to fields. Aside from that, there is no C++-like notion of const correctness in C# at all.

The rationale is hard to tell for sure, because there are a lot of potential reasons, but my guess would be desire to keep the language simple first and foremost, and uncertain advantages of implementing this second.

link|improve this answer
So you think MS considers like 'noise' to have const parameters in methods. – Incognito Jul 16 '10 at 8:40
1  
I'm not sure what "noise" is - I'd rather call it "high cost/benefit ratio". But, of course, you'll need someone from C# team to tell you for sure. – Pavel Minaev Jul 16 '10 at 15:40
feedback

I believe there are two reasons C# is not const-correct.

The first is understandibility. Few C++ programmers understand const-correctness. The simple example of const int arg is cute, but I've also seen char * const * const arg - a constant pointer to constant pointers to non-constant characters. Const-correctness on pointers to functions is a whole new level of obfuscation.

The second is because class arguments are references passed by value. This means there's already two levels of constness to deal with, without an obviously clear syntax. A similar stumbling point is collections (and collections of collections, etc).

Const-correctness is an important part of the C++ type system. It could - in theory - be added to C# as something that is only checked at compile-time (it doesn't need to be added to the CLR, and wouldn't affect the BCL unless the notion of const member methods were included).

However, I believe this is unlikely: the second reason (syntax) would be quite difficult to solve, which would make the first reason (understandibility) even more of a problem.

link|improve this answer
You're right that CLR doesn't really need to worry about this, as one can use modopt and modreq on metadata level to store that info (as C+/CLI already does - see System.Runtime.CompilerServices.IsConst); and this could be trivially extended to const methods as well. – Pavel Minaev Jul 16 '10 at 15:43
feedback

Your Answer

 
or
required, but never shown

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