I remember having read somewhere that it's possible to override the .init property of custom types in D. I'd like to do this for a struct I've created, but I'm not finding any way to do this, especially since default constructors aren't allowed. Is this actually possible, and if so, how can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
you can specify the init values of the fields (with compile time vars only)
|
|||||||
|
structs aren't allowed in D, because every variable is default-initialized (struct types as well), and the initializer must be known at compile time. – klickverbot Jun 9 '11 at 22:24