网站首页  词典首页

请输入您要查询的英文单词:

 

单词 null pointer
释义

null pointer

美 
英 
  • un.零点指示器
  • 网络空指针;是空指针;空指标
un.
1.
零点指示器

例句

释义:
1.
The bindtextdomain() function returns the directory pathname currently bound to the domain. If it fails, null pointer will be returned.
函数返回当前绑定到域的目录路径名。如果失败,返回空指针。
dictsearch.appspot.com
2.
I said earlier that an empty list is a LinkedList containing a null pointer in both fields.
我前面说过,空链表就是两个域都包含一个空指针的LinkedList。
www.ibm.com
3.
Instead, the error signaled at run time would be a null-pointer exception instead of a class-cast exception.
相反,在运行时发出的错误将会是一个空指针异常而不是类强制转换异常。
www-128.ibm.com
4.
Applying the indirection operator to a null pointer results in an implementation-defined behavior.
如果将间接寻址运算符应用于null指针,则会导致由实现定义的行为。
msdn2.microsoft.com
5.
One approach to statically determining possible null-pointer exceptions is a technique known as set-based analysis.
静态确定可能出现的空指针异常的方法是一种称为基层设定分析的技术。
www.ibm.com
6.
Notice how like our recursive programs, the definition of a linked list also contains a base case -- in this case, the NULL pointer.
注意,与我们的递归程序非常类似,链表的定义也包括一个基线条件——在这里是NULL指针。
www.ibm.com
7.
The first bug pattern relating to null-pointer exceptions that we'll explore is one that I call the Dangling Composite pattern.
我们将探讨的第一个关于空指针异常的错误类型,是一个我称之为悬挂复合类型的错误类型。
www.ibm.com
8.
Unfortunately, many designers have still not learnt that the special NULL pointer or null object is an equally bad idea.
遗憾的是,许多设计者并没有认识到空指针或空对象带来的危害。
www.infoq.com
9.
Else, it goes through the binding vector array looking for a non-NULL pointer to binding handle.
否则,它循环遍历绑定向量数组,寻找非NULL的绑定句柄指针。
www.ibm.com
10.
Because null-pointer exceptions are more difficult to diagnose, this "fix" would actually decrease the quality of the code.
因为空指针异常更难诊断,这种“修正”实际上会降低代码的质量。
www-128.ibm.com
1.
Clearly, SOAP separating is not the same as a null pointer.
显然,SOAP分离并不同于空指针。
www.ibm.com
2.
Null pointer errors are usually the result of one or more programmer assumptions being violated.
空指针错误通常是一个或多个程序员假设出错的结果。
www.51testing.com
3.
Unfortunately, automata theory tells us that no tool could ever statically determine which programs will throw null-pointer exceptions.
不幸的是,自动控制理论告诉我们,没有工具可以静态地决定哪些程序将抛出空指针异常。
www.ibm.com
4.
Because FindBugs doesn't know if the map contains "bob" or not, it will flag line 5 as a possible null pointer exception.
因为FindBugs不知道map是否包含“bob”,所以它将第5行标记为可能null指针异常。
www.ibm.com
5.
In many null-pointer exceptions, the true bug occurs where the variable is actually assigned to null.
在许多空指针异常中,真正的错误出现在变量被赋为空值的地方。
www.ibm.com
6.
This marker is usually called the null value, the null list, or the null pointer.
这个标记通常称作空值(nullvalue)、空列表(nulllist)或者空指针(nullpointer)。
www.ibm.com
7.
Symptoms: Code that uses a recursively defined datatype is signaling a null-pointer exception.
症状:使用递规定义的数据类型的代码报告一个空指针异常。
www.ibm.com
8.
Some types of memory access errors (like using a NULL pointer) cause a program to crash outright.
有些类型的内存访问错误(比如使用一个NULL指示器)将会导致一个程序完全崩溃。
www.ibm.com
9.
If the argument is a null pointer, all open files are flushed. The stream remains open after this call.
如果函数的参数是空,将导致所有的文件被刷新,并且文件的开启属性不变。
wenwen.soso.com
10.
Null pointer dereference faults are popular in C program, fault-oriented static testing method should detect these faults well.
空指针引用的错误在C 程序中普遍存在,面向故障的静态测试方法应该很好地针对这种故障模式。
kns50.chkd.cnki.net
1.
Furthermore, it says nothing about where in the code the null pointer was actually assigned.
此外,它并不指出在代码的何处这个空指针被赋值。
www.ibm.com
2.
Accessing the null pointer is very dangerous, as it might crash your program.
访问空指针是非常危险的,因为它可能使您的程序崩溃。
www.ibm.com
3.
Who knows how far that null pointer was passed from method to method before it was ever dereferenced?
谁知道空指针在被丢弃前从方法到方法传递了多远?
www-128.ibm.com
4.
Instead of defining a separate class for empty lists, it represents empty lists by putting a null pointer in both fields.
它在两个域中都放置一个空指针来表示空链表,而不是为空链表定义一个单独的类。
www.ibm.com
5.
That means a reference type can have a null pointer, but a value type cannot have a null value.
这意味着引用类型可能有空指针,但是数值类型不能有空值。
www.ibm.com
6.
In this example, line 6 will cause a null pointer exception because the variable actions has not been initialized.
在这个例子中,第6行将产生一个null指针异常,因为变量actions还没有初始化。
www.ibm.com
7.
This code clips the parameters to allowable ranges, checks for a null pointer assignment, and so on.
此程式码片断的参数允许的范围内,检查空指标转让,等等。
dictsearch.appspot.com
8.
in particular , we ll look into bug patterns that crop up as null pointer exceptions and discuss how to minimize their occurrence.
我们将特别看一下作为空指针异常而出现的错误模式,并讨论如何将它们的出现次数控制到最少。
www.ichacha.net
9.
Option so that if there is any error in allocating memory, it does not throw an exception but rather returns a NULL pointer.
选项,这样当分配内存出错时,就不会触发异常,而是返回一个空指针。
www-128.ibm.com
10.
Instead, it places a null pointer into the field.
相反,它是用空指针替代。
www.ibm.com
1.
NULL is defined simply as a null pointer (0) because the null pointer is invalid as a pointer anyway.
NULL被简单地定义为一个空指针(0),因为无论如何空指针都不是合法的指针。
www.ibm.com
2.
Here's what results from dereferencing a NULL pointer on a PC running Version 2. 6 of the kernel.
这是通过在一台运行着2.6内核的PC机上废弃一个NULL指针所引起的。
dictsearch.appspot.com
3.
Make sure you are not accessing null pointer.
确保您不是在访问空指针。
www.ibm.com
4.
Sun's JSF RI expects a renderer will send a null pointer exception if your component doesn't have a renderer.
Sun的JSFRI期望,在组件没有渲染器的时候,渲染器会发送一个空指针异常。
www.ibm.com
5.
This often happens if a handle is used after it has been freed, or if the handle is the null pointer.
如果在释放句柄后再使用该句柄,或者句柄为空值指针,则通常会发生这种情况。
www.ianywhere.com
6.
it can detect defects that happen in lower probability such as memory leak and null pointer dereference.
可以检测出一些“小概率”的缺陷,例如存储器泄漏缺陷、空指针引用缺陷等。
www.boshuo.net
7.
The import wizard does not open, and a Null Pointer Exception message appears in the console
将不会打开导入向导,并且控制台中将出现“空指针异常”消息
download.boulder.ibm.com
8.
An approach to statically determining possible null-pointer exceptions is a technique known as
静态确定可能出现空指针异常的方法是一种被称为
www-128.ibm.com
9.
Null pointer dereference in method on exception path
方法中存在某异常路径中的空指针
wenku.baidu.com
10.
A NULL pointer argument was passed
通过一个空指针参数
www.drados.com
随便看

 

英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。

 

Copyright © 2004-2022 Newdu.com All Rights Reserved
更新时间:2025/1/30 15:03:06