青年中文青年中文

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.