• 针对历史堆栈测试应用程序中,存储随机数作为事件

    In the testing application for the history stack, we only stored random Numbers as events.

    youdao

  • 目录堆栈使可以一个多个目录存储某个临时区域中,然后再次调回它们

    The directory stack enables you to store one or more directories into a temporary area, and then bring them back again.

    youdao

  • 记住程序进行函数调用特别是针对归函数)时,必须堆栈存储返回地址本地变量

    Remember that when a program makes a function call (especially for recursive ones), it has to store its return address and local variables on the stack.

    youdao

  • 内部所有方法内部声明变量包括参数一起存储堆栈框架中。

    Internally, all the variables declared within a method, including the parameters, are stored together in a stack frame.

    youdao

  • 因此进程退出时,系统将释放进程数据堆栈工作存储分页

    Thus, the system releases the working storage pages for the data of a process and stack when the process exits.

    youdao

  • 由于调用任何函数使用任何本地存储所以根本无需堆栈框架,并通过链接寄存器退出

    Since you did not call any functions or use any local storage, you did not need a stack frame at all, so you can now just exit through the link register.

    youdao

  • 所以指令会将链接寄存器(存有返回地址)存储调用函数堆栈框架恰当位置

    So this instruction stores the link register (which holds the return address) into the proper location in the calling function's stack frame.

    youdao

  • 我们建立堆栈管理应用程序历史事件记录也就是说存储一个列表最后添加元素

    We'll build a stack to manage the history of events in our application, meaning that we'll be storing a list, to which we will tack on elements to the end.

    youdao

  • ESP堆栈顶部存储传递程序命令参数数量默认1表示没有命令行参数)。

    ESP or the top of the stack stores the number of command line arguments supplied to a program, which is 1 by default (for no command line arguments).

    youdao

  • 堆栈用于按照后进(LIFO)的顺序存储数据

    Stacks are used for storing data accessed in Last in, First Out (LIFO) order.

    youdao

  • 注意SPE编写深度递归函数有些问题原因在SPE上没有任何堆栈溢出保护,而且本地存储很小

    Just note that writing deeply recursive functions on the SPE is problematic because there is no stack overflow protection on the SPE, and the local store is small to begin with.

    youdao

  • 虚拟堆栈实际堆栈类似一种后进(LIFO)的数据结构,可以用来临时存储函数参数函数结果

    The virtual stack -- like a real stack -- is a last in-first out (LIFO) data structure that temporarily stores function arguments and function results.

    youdao

  • 记住链接寄存器存储调用函数堆栈框架内,而函数自身堆栈框架。

    Remember that the link register is stored in the calling function's stack frame, not the function's own stack frame.

    youdao

  • 我们来看看历史堆栈需要存储数据属性

    Let's jump right in and talk about the sort of data, or properties, we need to store in our history stack.

    youdao

  • 因为y输出操作数部分中指定的,所以 %edx更新存储-8(%ebp),堆栈 y 的位置

    Since y is specified in the output operand section, the updated value in %edx is stored in -8(%ebp), the location of y on stack.

    youdao

  • Medium跟踪级别捕捉低级跟踪涉及所有信息再加上数据库存储过程堆栈

    Medium: This tracing level captures all of the information included in low-level tracing, plus table names, the database name, and stored procedure stacks.

    youdao

  • PowerPCABI实际上会将函数参数使用存储空间放入调用函数堆栈空间中。

    The PowerPC ABI actually puts the storage space for the function parameters in the calling function's stack space.

    youdao

  • 典型承载堆栈包括Web服务器服务器脚本功能数据存储

    A typical hosted stack includes a Web server, server-side scripting capability, and data storage.

    youdao

  • 打开应用程序单击链接,看到存储浏览器cookie中的历史堆栈指针

    If you open the application and click around, you'll see our history stack and pointer stored in the browser's cookies.

    youdao

  • 而不是放置到堆栈中,变量通过use关键字指定存储静态存储中。

    Instead of being placed on a stack, the variables specified with the use keyword are stored in static storage.

    youdao

  • mbackchain -mno-backchain这些选项控制调用地址是否作为backchain指针存储被调用堆栈帧。

    mbackchain and -mno-backchain: These options control whether the address of the caller's frame is stored as so-called "backchain" pointer into the callee's stack frame.

    youdao

  • 堆栈存储result 中,使用CAStop位置更新为 top->next返回适当数据

    The top of the stack is stored in result, and you use CAS to update the top location with top-<next and return the appropriate data.

    youdao

  • Dirpersistshell调用存储恢复目录堆栈因此可以保留重要状态能够回到原来离开位置继续工作

    Dirpersist saves and restores your directory stack across shell invocations, thus preserving important state so that you can resume work where you left off.

    youdao

  • 接下来当前堆栈框架指针存储指向一个堆栈框架向指针,虽然尚未建立堆栈框架(通过偏移量实现的)。

    Next, the current stack frame pointer is stored as the back pointer for the next stack frame, even though you haven't established the stack frame yet (this is done through negative offsets).

    youdao

  • 软件堆栈对象包含信息多个属性元素虚拟模板文件存储库中的存储位置等。

    The software stack object contains several property elements for information such as where the virtual machine template is stored in the file repository.

    youdao

  • 操作设备按照长度厚度进行排序堆积木材移动堆栈存储干燥木材填入刨床

    Operate equipment to sort and stack lumber by length and thickness, move stacks to storage areas or drying kilns, and feed lumber through planers.

    youdao

  • 如何存储堆栈指针寄存器记忆(8085)?。

    How to Store value in Stack Pointer Register to Memory (8085)?

    youdao

  • main堆栈最小为32字节factorial堆栈48字节,原因是factorial需要存储本地变量

    Main's stack will be the minimum of 32 bytes, while factorial's will be 48, because factorial has a local variable to store.

    youdao

  • 堆栈突然挡住去路,我们必须使用线程状态明确存储对象中或者构建式的可切换堆栈等等

    Suddenly the stack is in the way, we must use threads, or explicitly store state in objects, or build explicit, switchable stacks, and so on.

    youdao

  • 怎样才能适应这种重复使用存储撤销堆栈模式一个普通的向量类型化模型

    How can I adapt this reused-storage undo stack pattern from a generic vector to a typed model?

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定