...ing logging 4.0

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

2011-09-17から1日間の記事一覧

デリゲートと関数ポインタで共変の戻り値(covariance)

import std.stdio; class Base {} class Derived : Base {} void main() { // Covariance { Base delegate() f = delegate Derived() { return new Derived; }; writefln("delegate convariance is <%s>", f().toString() == "a.Derived" ? "OK" : "NG"); }{…