activation record
常見例句
- The activation record contains all of the call-specific data for the function, including parameters and local variables.
活動記錄包含了這個函數(shù)的所有與調(diào)用有關(guān)的數(shù)據(jù),包括蓡數(shù)和本地變量。 - This makes it easy for functions to know where their activation record is -- they are simply defined in terms of the stack pointer.
這對函數(shù)了解自己的活動記錄在什麼地方提供了方便 —— 它們可以使用堆棧指針的形式簡單地進行定義。 - Each call gets its own activation record, so each time it is called the variables get their own storage space within that activation record.
每個調(diào)用都有自己的活動記錄,因此每次被調(diào)用時,變量都會在活動記錄中獲得自己的存儲空間。 返回 activation record