0
之間有什麼區別:AS3的Flex嵌入圖像雪碧
[Embed(source = "../assets/graphic.png")]
const GRAPHIC:Class;
var graphic:Bitmap = new GRAPHIC();
addChild(graphic);
和:
[Embed(source = "../assets/graphic.png")]
const GRAPHIC:Class;
addChild(new GRAPHIC());
和其中的一個,我應該使用,爲什麼?