说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 弹出堆栈
1)  pop-up a stack
弹出堆栈
2)  stack overflow
堆栈溢出
1.
The nature of how the stack overflow attack happens was analyzed.
堆栈溢出 ( Stack overflow)攻击是当前攻击计算机的一种常用手段 。
2.
Aiming at the deficiency of common method StackGuard which avoids stack overflow by improving compiler we putforword a new method of anti-stack overflow based on random technology and StackShield method,which another improving compiler method.
针对现有的用增强编译器来消除堆栈溢出的常用方法StackGuard在实际使用中表现出的不足,基于随机数技术及结合另一种增强编译器的方法StackShield部分思想提出了一种防止堆栈溢出攻击的新方法。
3.
The main idea of this article describes the theory of stack overflow, and the implement of stack overflow in solaris platform by bypassing the non-executable stack.
本文描述了在 solaris平台上堆溢出的基本原理 ,以及通过绕过不可执行堆栈在 solaris平台上实现堆栈溢出的方法。
3)  buffer overflow
堆栈溢出
1.
BLP formalization study and implementation on buffer overflow;
堆栈溢出的BLP形式化研究及实现
2.
Buffer overflow is a technology widely used by hackers to attack computer.
堆栈溢出攻击是目前使用得相当普遍的一种黑客技术分析了这种攻击技术的原理,指出了进行这种攻击时输入参数与正常情况下, 的差异。
4)  stack-output problem
堆栈输出问题
1.
This paper introduces the successor-sequences method, that is an simple,effective,gearal purpose and easy to understand algorithm to generate sequences,presents its principls and usage steps,and then take uses of the successor-sequences algorithms to resolve a typical problem,stack-output problem.
然后将这种方法用于解决具有典型意义的堆栈输出问题,得到了两种精巧的算法。
5)  last-in first-out stack (LIFO stack)
后进先出堆栈
6)  FIFO(First-In First-Out)
先进先出(堆栈)FIFO
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条