So what the boot ROM does is the RCM message, the 680 bytes will be put here into the global variables.
所以boot ROM做的就是RCM信息,这680字节会被放到这里的全局变量中。
单词 | Global variable |
释义 |
Global variable
原声例句
DEFCON Collection So what the boot ROM does is the RCM message, the 680 bytes will be put here into the global variables. 所以boot ROM做的就是RCM信息,这680字节会被放到这里的全局变量中。 meeting Sorry. So is this, and I don't know what how this links to the function question, but this sounds like it's back to the global variable question. 对不起 我不知道这和函数问题有什么联系 但这听起来像是回到了全局变量的问题。
中文百科
全局变量在进程设计中,全局变量是在所有作用域都可访问的变量,与之对应的是局部变量。 通常,使用不必要的全局变量被认为是坏习惯,这正是由于全局变量的非局部性:全局变量可能被从任何地方修改(除非位于保护内存中),也可能被任何地方所依赖。于是全局变量便拥有了创建相互依存关系的无限可能,而互相依存关系的创建会使得复杂度增加,参见远隔作用(Action at distance)。然而,在少数情况下是适合使用全局变量的。例如,可以通过全局变量的使用来避免常用变量在一系列函数间的频繁传递。 C++语言中全局变量的例子: 因为变量是全局的,所以就没有必要为了在 main 以外的函数中使用而作为参数传递。全局变量属于进程中的所有函数。
英语百科
Global variable 全局变量In computer programming, a global variable is a variable with global scope, meaning that it is visible (hence accessible) throughout the program, unless shadowed. The set of all global variables is known as the global environment or global state. In compiled languages, global variables are generally static variables, whose extent (lifetime) is the entire runtime of the program, though in interpreted languages (including command-line interpreters), global variables are generally dynamically allocated when declared, since they are not known ahead of time. |
随便看 |
英汉网英语在线翻译词典收录了3779314条英语词汇在线翻译词条,基本涵盖了全部常用英语词汇的中英文双语翻译及用法,是英语学习的有利工具。