1

当我写:

import flash.display.*; // importing all the classes of display

import flash.display.MovieClip; // importing only one class

和其他类一样,所以问题是:如果我从某个包中导入所有类,应用程序的工作速度会比我只导入真正需要的类慢吗?

这是真的还是假的?

4

1 回答 1

4

那将是错误的。从命名空间导入更多类不应影响应用程序的速度,因为它不会导致运行更多代码。

于 2012-07-05T14:29:59.023 回答