Hi,
---------------------------------------------------
interface I { }

I[string] i;

class C : I {
    this() {
        i["s"] = this;
        foreach (_i; i) {
            writeln(&_i);
        }
        foreach (ref _i; i) {
            writeln(&_i);
        }
    }
}

void main() {
    C c = new C;
    writeln(&c);
}
---------------------------------------------------
output:
19FDD8
2802028
21FE58
---------------------------------------------------
I need that I["s"] to have the same address like c.
  • Address problem Gheorghe Gabriel via Digitalmars-d-learn

Reply via email to