activation record信息详情

activation record发音

意思翻译

[计]活动记录;现役记录

相似词语短语

record───n.记录,记载;唱片;(过去的)经历,履历;纪录,最佳成绩;前科,犯罪记录;adj.创纪录的;n.(Record)(美)勒科尔(人名);v.记录,记载;录制;发表正式声明;(仪器)标明,显示;取得(成就)

activation energyserum───活化能谱

enhancer activation───增强子激活

our record───我们的记录

license activation───许可证激活

transcriptional activation───转录激活

record player───电唱机,唱机;n.电唱机

historical record───历史记载;历史性记录

immunization record───免疫记录表;疫苗接种记录表

双语使用场景

This makes it easy for functions to know where their activation record is — they are simply defined in terms of the stack pointer.───这对函数了解自己的活动记录在什么地方提供了方便——它们可以使用堆栈指针的形式简单地进行定义。

The activation record contains all of the call-specific data for the function, including parameters and local variables.───活动记录包含了这个函数的所有与调用有关的数据,包括参数和本地变量。

Only when the function call is completely finished is the space for the activation record released for reuse (more on this later).───直到函数调用彻底完成 时,活动记录使用的空间才会被释放以便重用(更多信息请参看后面的介绍)。

This is because each time a function is called, it has an activation record (also called a stack frame) associated with it.───这是由于每次调用一个函数时,都有一个相关活动记录(activationrecord)(也称为堆栈帧)。

Each call gets its own activation record, so each time it is called the variables get their own storage space within that activation record.───每个调用都有自己的活动记录,因此每次被调用时,变量都会在活动记录中获得自己的存储空间。

英语使用场景

Only when the function call is completely finished is the space for the activation record released for reuse (more on this later).

If a function is executing, then the stack pointer is pointing to the top of the whole stack, which is also the top of that function's activation record.

Each call gets its own activation record, so each time it is called the variables get their own storage space within that activation record.

The activation record contains all of the call-specific data for the function, including parameters and local variables.

This is because each time a function is called, it has an activation record (also called a stack frame) associated with it.

This makes it easy for functions to know where their activation record is -- they are simply defined in terms of the stack pointer.

When a messages are used to represent method calls, each activation corresponds to the period during which an activation record for its call is present on the call stack.

The activation record isn't needed anymore, so we are going to cut it out and redirect the tail-called function back to the function that called us.