From what I understand while reading up on D, when using the immutable keyword on a variable, the value of the variable must be known at compile time, while C#'s readonly need not be, and readonly fields can be assigned in a class constructor using non-static values. Is this possible in D?
|
|
|||||
|
|
As there appears to be some confusion (from both the original question, and he_the_great's comment) regarding immutable, I thought I'd add an aside. When you say In general, So to turn away from theory and back to more practical matters, it's not true at all that immutable values have to be known at compile time, and that there's no good way to create them. However, the only mutation can occur inside the constructor. For simple scalar types, this is pretty obvious:
But what about something like an object? Well, to construct a type T we use
so to construct the type immutable(T) we use
here's a more complete little example
As you can see, mutation can occur inside the constructor. You can read member variables, but cannot write them (immutable is transitive; that is, every member (and every member of members) becomes immutable if the parent does. You can only call methods if they're marked as I apologise for the off-topic rambling, but I see that a lot of people appear to be confused regarding this topic. |
|||
|
|
In D2, const member can only be initialized inside the constructor (or directly in the class declaration, but not both):
|
|||
|
|
|
fwend's answer is basically dead-on, but if you're looking for something a little less verbose, you could always make a mixin to automate it. Untested code below to give the general idea:
Usage:
|
|||
|
|
|
I'd declare the field as private, then use a get accessor to read it |
|||
|
|