• 这个指针必须一个绝对目录路径因此可能需要自己代码调整

    This pointer must be an absolute directory path, so you may need to tweak this value in your own code.

    youdao

  • 此外并不指出代码的何处这个指针值。

    Furthermore, it says nothing about where in the code the null pointer was actually assigned.

    youdao

  • 关于方法指针,有意思事情它们使用可能表明代码违反迪米特法则

    The interesting thing about method Pointers is that their use can be an indication that the code violates the Law of Demeter.

    youdao

  • 悬空指针可能发生以微妙方式使用内存代码

    Dangling Pointers are likely to arise in code, which USES memory in subtle ways.

    youdao

  • 显示列表1中的代码展示内存渗漏一个不断摆动的指针

    The code shown in Listing 1 shows both a memory leak and a dangling pointer.

    youdao

  • 此类错误典型示例添加错误处理代码处理NULL指针错误引用,却没有查出无效引用的真正原因

    A classic example of such a mistake is adding error handling code to take care of NULL Pointers or bad references without looking into the real cause of the invalid references.

    youdao

  • 现在不要误会我:方法指针不是为了侵入代码或者获得人们现金引用

    Now, don't get me wrong: Method pointers aren't meant for hacking into code or obtaining references to people's cash!

    youdao

  • 即便我们可以采用不同测量方式,例如代码行数、数量、函数指针的数量、系统漏洞的数量,等等软件还是缺乏一种定义良好原子结构

    Software also lacks a well defined atomic unit of work — even though we can apply various measures, such as lines-of-code, number of classes, number of function points, number of bugs, etc.

    youdao

  • 时间到达12:59:59时,代码触发程序,快速指针(或者弧形表盘)倒退将时间重置1:00——一幕总是那么的有趣

    When it becomes 12:59:59. the code triggers a subroutine that quickly runs the hands (or arcs) backward and resets the time to 1:00 - which is always fun to wait for and watch.

    youdao

  • SPE标量代码中,将标量声明向量向量指针(即使没有它们作为向量使用)可以加速代码执行因为这样就不会执行非对齐的加载存储操作

    In scalar code on the spe, declaring scalar values as vectors and vector Pointers (even if you aren't using them as vectors) can speed up code because it doesn't have to do unaligned loads and stores.

    youdao

  • 这样将保护程序代码避免堆栈缓冲区函数指针溢出而且全都不需重新编译

    This protects against stack, buffer, and function pointer overflows, all without recompilation.

    youdao

  • Solaris,下面段示例代码可以获取堆栈指针

    On Solaris, this sample code allows you to get the stack pointer.

    youdao

  • 因此代码回到循环开头,指向正确top指针(线程b修改后的),调用CAS,把20堆栈后结束

    So, the code loops back, points to the proper top pointer (which was changed because of Thread b), invokes CAS, and is done with pushing 20 into the stack.

    youdao

  • 第2部分中,介绍如何重写函数指针介绍组件组装一些有趣shell网络套接字代码示例

    In Part 2, I'll show how to overwrite a function pointer and cover assembly components and some juicy shell, network, socket code samples.

    youdao

  • 需要修改oprofile内核代码周期性地SPU指令指针进行采样

    This requires changes to the OProfile kernel code to sample the SPU instruction Pointers regularly.

    youdao

  • 清单8显示了向表格中的初始单元充值指针代码

    Listing 8 shows the code for filling in the score and pointer for an individual cell in the table.

    youdao

  • be代码Singleton对象分配内存一个指向该块内存的指针存储到eax中。

    The code at BE allocates the memory from the heap for the Singleton object and stores a pointer to that memory in eax.

    youdao

  • 查找代码路径将会或者可能造成null指针异常情况,它查找对null的冗余比较的情况。

    It looks for cases where a code path will or could cause a null pointer exception, and it also looks for cases in which there is a redundant comparison to null.

    youdao

  • 清单6包含代码示例展示了如何声明一个状态信息结构然后根据结构的大小stateinfo指针分配存储空间。

    Listing 6 contains a code example of declaring a state information structure and then allocating storage for the stateInfo pointer based on the size of the structure.

    youdao

  • Win32系统开发的C++代码基于ILP32模型的,该模型中,intlong指针类型32的。

    C + + code developed in Win32 systems is based on the ILP32 model, where int, long, and pointer types are 32 bits.

    youdao

  • 代码data转换GtkLabel的指针

    The code converts data into a pointer to GtkLabel.

    youdao

  • 得到标签指针后,代码使用g_assert确定标签是否等于NULL

    After obtaining the pointer to the label, the code USES the g_assert macro to determine if the label is equal to NULL.

    youdao

  • 列表1 .带有一个内存渗漏一个不断摆动的指针代码(mem_errors. c)。

    Listing 1. Code with memory leak and dangling pointer (mem_errors.c).

    youdao

  • 调用遗留代码时候可以通过调用导出函数进行直接调用,也可以通过使用函数指针进行间接地调用,但是内核必须完成以下工作

    When legacy code is called, either directly by calling an exported function or indirectly by using a function pointer, the kernel must

    youdao

  • 代码目标作为第一参数,将一个代码函数指针作为第二个参数进行传递

    The code passes the target as the first argument and a pointer to the code function as the second. The syntax for this is.

    youdao

  • 但是通过使用RationalPurify运行时分析能够指出发生问题对象指针准确代码(10)。

    By doing a runtime analysis with Rational Purify, however, you can pinpoint the exact line of code where the reference to the object in question has been created (Figure 10).

    youdao

  • list里面保存的是指针那么增加下面代码

    If Pointers are stored in a list then add.

    youdao

  • 代码中,首先要为标准输入声明一个文件指针以便能够拼写检查过程键盘获得交互式信息

    In this code, you start by declaring a file pointer to standard input so that you can get interactive information from the keyboard during the spell-check process.

    youdao

  • 如果需要编写这种代码可能会碰到可移植性问题;您应该开发一个具有单独标记结构使用这些结构,而不是使用指针

    If you need to write code like this, you are in trouble for portability; you should probably develop a structure with separate flags, and use these instead of Pointers.

    youdao

  • 清单1中的代码将分配两个 512字节内存然后指向第一个内存指针设定为指向第二个内存块。

    The code in Listing 1 allocates two 512-byte blocks of memory, and then the pointer to the first block is set to the second block.

    youdao

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

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

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