| 释义 |
local symbol 局部符号 In programming, a symbol meaningful only to the module that defines it. Because the local symbol is not accessible to other modules, the same symbol name with different values can appear in more than one module. These modules can be loaded and executed together without conflict. 程序设计中的一种符号,这种符号仅仅在定义它的模块中才有意义。由于某一模块定义 的局部符号,其它的模块不能访问它,因此不同的模块可以有同名且取值不同的局部符号。 这些模块可以一起装入,一起执行,而不会发生冲突。 |