...ing logging 4.0

はてなブログに移行しました。D言語の話とかいろいろ。

2009-04-03から1日間の記事一覧

alias this, opDot, and opCast - dmd 2.027

import std.stdio; class A { public alias x this; private double x = 1.5; } class B { double opCast() { return x; } private double x = 1.5; } class C { class Proxy { double x = 1.5; } Proxy opDot() { return p; } this() { p = new Proxy; } pr…