//mc是被复制影片简介的实例名,(===在库中找到mc影片简介,右击“属性”,点击“为actionscript导出”,选中确定即可===这个是重点) var newSprite:Sprite=mc; addChild(newSprite); var newClass:Class=getDefinitionByName(getQualifiedClassName(newSprite)) as Class; var newMc=new newClass(); addChild(newMc); //…
Spring Framework 是 IOC (Inversion of Control 控制反转)原则的实践. IoC is also known as dependency injection (DI 依赖注入). org.springframework.beans 和 org.springframework.context 两个包实现了Ioc 容器. BeanFactory接口的子接口 ApplicationContext 定义了容器的基本功能.如果是web app 使用的是 WebA…