- 183 名前:login:Penguin mailto:sage [2011/06/06(月) 02:02:47.47 ID:4QezmLvV.net]
- class Hoge {
static Hoge foo = new Hoge(); public static void check_foo() { assert( foo != null ); print("foo = %p\n", foo); } public Hoge(){} } void main() { var hoge = new Hoge(); hoge.check_foo(); } これで、問題無く動いたよ => foo = 0x9c2e000
|

|