On Wednesday, February 15, 2017 21:27:00 Andrew Chapman via Digitalmars-d-
learn wrote:
> Hi all, sorry if this question is silly, but is it possible to
> get the address of an object within the object itself?
>
> e.g.
>
> class Node
> {
> this()
> {
> writeln(&this); // Doesn't work
> }
> }
>
> auto node = new Node();
> writeln(&node); // Does workThis does _not_ give you the address of the Node object. It gives you the address of the reference. - Jonathan M Davis
