// forked from bkzen's Object.init() ? /** * * 質問 : Object.init(); ってメソッドは何ですか? * 何に使うんでしょうか? * */ package { import flash.display.Sprite; import flash.text.TextField; public class FlashTest extends Sprite { public function FlashTest() { var txt: TextField = new TextField(); txt.width = txt.height = 465; addChild(txt); txt.text = "" + init + " 何このメソッド?\n"; txt.appendText("" + Object.init + " 何?\n"); txt.appendText("" + init() + " 何??\n"); txt.appendText("" + Object.init() + " 何につかうの???\n"); txt.appendText("" + length + " なに?\n"); txt.appendText("" + Object.length + " What?"); } } } forked from: Object.init() ?