我写的时候:
import flash.display.*; // importing all the classes of display
import flash.display.MovieClip; // importing only one class
以及其他类,所以问题是:如果我从某个包中导入所有类,那么应用程序的工作速度会比只导入所需的类很少吗?
是真还是假?
答案 0 :(得分:4)
那将是错误的。从命名空间导入更多类不应该影响应用程序的速度,因为它不会导致运行更多的代码。