A COM client interacts with a COM object by acquiring a pointer to one of the object's interfaces and invoking methods through that pointer, as if the object resides in the client's address space.
COM的客户程序通过获取指向一个对象接口的一个指针,并通过该指针来调用方法以实现与COM对象之间的互相作用,就好像对象驻留在客户程序的地址空间中一样。
In the process editor, move the mouse pointer to the far left edge of the process until the pointer changes to an icon indicating that you're adding a connection.
在流程编辑器中,将鼠标指针移到流程的最左侧边缘,直到指针更改为指示您正在添加连接的图标。
This function accepts a pointer to a user space buffer, a pointer to a kernel buffer, and a length defined in bytes.
该函数接受一个指向用户空间缓冲区的指针、一个指向内存缓冲区的指针、以及一个以字节定义的长度。
Since pushing a variable essentially moves the stack pointer by a dword, the stack pointer is adjusted by adding 4 (the size of a dword) to it (line 32).
因为在堆栈中压入一个变量会让堆栈指针移动一个双字,所以给堆栈指针加4(双字的大小)(第32行)。
This ensures that the frame pointer register will be used as a frame pointer leading to accurate tracebacks.
这确保了帧指针寄存器将被用作帧指针,从而产生正确的回溯。
Each entry in the PTE chain USES 4 bytes to store a pointer to the page-table entry and an additional 4 bytes to store the pointer to the next entry on the chain.
pte链的每一个条目使用4个字节来存储指向页表条目的指针,用另外4个字节来存储指向链的下一个条目的指针。
This is in contrast with conservative GC systems which requires you to guess whether some piece of memory contains an object pointer or just some random data that resembles an object pointer.
这和需要你猜测某个内存片包含对象指针和一些类似对象指针的随即数据的老式GC系统有鲜明的对比。
Additional line to delete the pointer to the object is needed since the container will not delete a stored pointer so it has to be manually deleted.
容器不会删除其保存的指针,需要手动删除,因此再上面代码中增加了额外一行。
So you simply need to move the stack pointer by adding the stack frame size to the stack pointer using ai $sp, $sp, FRAME_SIZE.
所以您只需通过使用ai $sp, $sp, FRAME_SIZE 将堆栈框架大小加到堆栈指针来移动堆栈指针即可。
The data pointer will now contain the pointer to that label each time the callback is called.
现在每次调用回调时,data指针都会包含到那个标签的指针。
With the pointer to the CompositeContext, the following method can be invoked to obtain a pointer to service.
使用指向CompositeContext的指针,可以调用下面的方法来获取指向服务的指针。
Increments the row pointer for the next virtual user or, if the end of the file is reached, go back to the beginning of the file and reset the pointer to 1.
为下一位虚拟用户增加行指针或者,如果已经到达文件的末尾,就回到这个文件的起始,使指针重新回到1。
The call to execv first takes a pointer to the name of the binary to be run, and then a pointer to the array of parameters that you declared earlier.
execv调用首先取得一个指向要运行的二进制文件名称的指针,然后取得一个指向您前面声明的参数数组的指针。
The main SPE program will receive an effective address pointer to a struct containing the size and pointer of a string in main memory.
主s PE程序将接收到包含字符串大小和指针的struct的有效地址指针。
After the pointer to the OVERLAPPED structure is returned, the CONTAINING_RECORD macro can be used to obtain a pointer to the extended structure.
当得到了指向OVERLAPPED结构的指针以后,可以用CONTAINING_RECORD宏取出其中指向扩展结构的指针。
Unlike the dreaded null-pointer exception (which says nothing about what was expected to occur instead of the null pointer), a class-cast exception is relatively easy to debug.
与可怕的空指针异常(该异常除了报告空指针之外,对于将要发生的事情什么也不说)不同,类强制转换异常相对来说容易调试。
Each stack frame holds a pointer to the previous stack frame (called the back chain pointer), as well as a space for return addresses for when it calls other functions.
每个堆栈框架都有一个指向前一个堆栈框架的指针(称为回链指针),还有一个当它调用其他函数时用于存放返回地址的空间。
Description: The system detected an invalid pointer address when it tried to use a pointer argument of a call.
说明:尝试使用调用的一个指针参数时-系统检测到无效指针地址。
This will lead to better stack tracebacks, as the frame pointer register is used as a frame pointer rather than a general purpose register.
这将产生更好的堆栈回溯,因为帧指针寄存器被用作帧指针而不是通用寄存器。
In the working example, move the slider pointer at the top of the display a bit to the right (that is, grab it with your mouse pointer, drag it over, then release the first button).
在实际例子中,将显示器顶部的滑块指针稍微向右移动一点(就是将鼠标指针放在它上面,按下鼠标左键拖动,然后释放鼠标左键)。
The final item in the stack frame is a pointer to the previous stack frame, often called the back pointer.
堆栈帧中的最后一个条目是一个指向前一堆栈帧的指针,通常被称为后向指针(back pointer)。
To shorten the amount of time it takes for the mouse movement to play, move the mouse pointer over the left edge of the mouse object until the resize pointer appears.
若要缩短播放鼠标移动所需的时间,请将鼠标指针移到“鼠标”对象的左边缘,直到调整指针出现为止。
NULL. Conceptually, that's the "invalid pointer", "pointer that points to nothing", whatever. There's a very good reason it's in the language.
从概念上讲,那是“无效的指针”,“指针指向虚无”,无论。有一个很好的理由是在语言。
Custom pointer cursor: a custom Game Object can be applied here to use instead of the default flat cylinder for the pointer cursor.
(自定义指针光标):可以在这里设置一个自定义的游戏对象用来代替指针光标的默认平柱体。
One will go to the contact inside the laser pointer, and the other, we'll attach to the actual housing of the laser pointer.
其中一条连接到指示器内的触点,而另一条我们会连接到指示器的外壳上。
When first using Pointers, the difference in whether an assignment is to the pointer or through the pointer to the value pointed to can be confusing.
对于初学指针者,给指针赋值和通过指针进行赋值这两种操作的差别确实让人费解。
Write code to change the value of a pointer. Write code to change the value to which the pointer points.
编写代码修改指针的值;然后再编写代码修改指针所指对象的值。
An array is converted to a pointer to the type of the array; a function is converted to the appropriate pointer to function type.
将数组转换为指向数组类型的指针,将函数转换为指向函数类型的适当指针。
An array is converted to a pointer to the type of the array; a function is converted to the appropriate pointer to function type.
将数组转换为指向数组类型的指针,将函数转换为指向函数类型的适当指针。
应用推荐