vote up 0 vote down star

If you have an immutable type like this:

struct Point3
{

}

and a member inside like origin:

public static const Point3 Origin = new Point3 (0,0,0);

should you use:

new Point3 (0,0,0)

?

It seems to me that since the type can not be changed, why have many origins that are essentially the same thing? Like we never change 0, right?

How to achieve the same thing for immutable types?

flag

56% accept rate

2 Answers

vote up 7 vote down check
public static readonly Point3 Origin = new Point3(0,0,0);
link|flag
+1 But its not really "const", is it? ;) – Andrew Hare May 26 at 20:41
It's close enough. The closest, probably :) – Mehrdad Afshari May 26 at 20:42
Thanks, but why create new instances every time this is called? Or is it only called once, I mean the creation of a new Point3 upon accessing the Origin member. – Joan Venge May 26 at 20:44
3  
It won't create new instances. A struct is always copied, btw. It's its nature. But the constructor won't be called, so it's not really considered a new instance. – Mehrdad Afshari May 26 at 20:46
2  
It won't create a new instance each time it's used - it's a static readonly variable like any other; the static initializer is only executed once. – Jon Skeet May 26 at 20:46
show 1 more comment
vote up 1 vote down

As Andrew mentioned, you can't use const for this because it's not a compile-time constant.

Note that if you are going to use a constructor repeatedly, you'd be better off (from a performance point of view) calling

new Point3()

than

new Point3(0, 0, 0)

The compiler knows that the first version is just going to blank out memory, and doesn't need to call any code.

However, I'd go along with providing an Origin member and using that everywhere instead, where possible :)

link|flag
Thanks Jon. In the last line, you mean I should go ahead and use Origin with readonly and new Point3()? – Joan Venge May 26 at 20:49
Btw Jon, why const can't be used with this? You can do const int a = 1, right? Why not new Point3() ? – Joan Venge May 26 at 20:51
1  
@Joan: Because there's no way to represent a Point3D literal in code. – Mehrdad Afshari May 26 at 20:52
1  
To create a Point3, the constructor should be called. The constructor is a method and the behavior is not necessarily known at compile time. You can only create constants with values of integral types, strings, bool and null. The reason I mentioned above is a high level view. The real reason is that there's no IL instruction to load a constant structure like that. For integers and bool, there's ldc, for null, we've 'ldnull', and for strings, we have 'ldstr'. – Mehrdad Afshari May 26 at 20:58
1  
I think Jon's advice is primarily due to improved readability and decreased chance of error. Regarding JIT optimization, I highly suspect it's smart enough to recognize that but I cannot say anything as I haven't checked the disassembly. ld means load. For example, ldc.i4.1 instruction will load a 4 byte 1 value on the stack. – Mehrdad Afshari May 26 at 21:06
show 3 more comments

Your Answer

Get an OpenID
or

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