神经传导速度检查异常。
不要重复释放同一对象。检查异常处理代码的情况。
Make sure there's no code path where the same object is released more than once. Check error code paths.
我们应该检查异常类型,但此处我们将假定它意味着没有找到相应结果。
We should check the exception type, but here we'll just assume it means that no results were found.
目的探讨男性肠镜检查异常者的护理,为临床护理指导提供依据。
Objective: to study effect of rheumatoid arthritis nursing instruction on rehabilitation.
已检查异常继承自exception类并用于处理可恢复性出错诸如业务出错场景。
Checked exceptions inherit from exception class and are used to handle recoverable errors such as business error scenarios.
最后,如果你以为你已经被这个诈骗被害人,得到一份你的信用报告,立即检查异常举动。
Finally, if you suspect you've been a victim of this fraud, get a copy of your credit report immediately to check for unusual activity.
结果PM/DM以肌无力、肌肉压痛、血清肌酶谱增高为主要临床表现,伴肌电图及病理学检查异常;
Results The main clinical presentations of PM/DM included amyosthenia, muscular tenderness, elevation of serum enzymes, accompanied by abnormal electromyography and muscular pathology.
从而提供一种在应用于检查异常及诊断异常时 不会降低判断的精确度、且易于组装的数据分类装置。
Thus the invention provides a data classification method and apparatus easily packaged without reducing the judgment accuracy in an application to fault detection and fault diagnosis.
结果163例脑出血患者中心电图检查异常者129例,占79.1%,且与年龄、出血部位、出血量相关。
Results In 163 patients, 129 ECG are abnormal(79.1%), which are relative with age, the hemorrhage position and Volume.
未检查异常作为运行时exception类是理想的异常侯选处理不可恢复性出错,如资源不可用或者空指针。
Unchecked exceptions which are descendents of RuntimeException class are the ideal candidate exceptions handle non-recoverable errors such as resource non-availability or some null Pointers.
一个异步方法能返回一个Future对象,该对象使得客户端可以获得一个结果值、检查异常或者尝试取消正在进行中的调用。
An asynchronous method can return a Future object that allows the client to retrieve a result value, check for exceptions, or attempt to cancel an in-progress invocation.
如果您调用一个可能抛出检查异常的已有函数,您应编写一个包装器函数,捕获并处理此类异常,然后在XSLT中调用包装器方法。
If you invoke a preexisting function that can throw a checked exception, you should write a wrapper function that catches and handles that exception; then, invoke the wrapper method from XSLT instead.
当一个方法抛出InterruptedException时,它不仅告诉您它可以抛出一个特定的检查异常,而且还告诉您其他一些事情。
When a method throws InterruptedException, it is telling you several things in addition to the fact that it can throw a particular checked exception.
您不必在这个级别上处理异常,因为Spring 将它们转换为一套通用的未检查异常(uncheckedexceptions)。
You don't have to handle exceptions at this level because Spring translates them to a common set of unchecked exceptions.
对于方法调用指令,可以使用BytecodeEngineeringLibrary (BCEL)类来提取方法声明抛出的已检查异常的类型。
For the method call instructions, you use Bytecode Engineering Library (BCEL) classes to extract the types of checked exceptions the method is declared to throw.
塞克硝唑片组实验室检查异常发生率为0.00%,替硝唑片组实验室检查异常发生率为2.08%,两组之间比较差异无统计学意义(P>0.05)。
The rates of abnormal results of laboratory test were 0.00% in trial group and 2.08% in control group. There were no significant differences between two groups in safety(P>0.05).
使用引入(Introduction),Aspect可以向类中添加新的方法和变量、声明一个类实现一个接口或将检查异常转换为未检查异常(unchecked exception)。
Using introduction, aspects can add new methods and variables to a class, declare that a class implements an interface, or convert checked to unchecked exceptions.
这个要比我们之前的版本长很多,但这主要是处理远程目录不存在的时候必须要做的异常检查造成的。
That's substantially longer than our previous revisions, but this is mostly due to the exception checking which must be done to handle remote directories that may be missing.
某些派别的信徒支持使用异常来检查参数和其他的前置条件,使用错误编码来报告程序中出错的处理。
Some disciples espouse using exceptions to check parameters and other preconditions, and error codes to report processing errors within the function.
正如前面提到过的,此层次结构中的异常未经检查。
As mentioned previously, the exceptions in this hierarchy are unchecked.
本文首先讨论了当服务器抛出不同的异常时客户端的预期行为,然后强调了已检查的异常的使用。
This article first discusses the expected behaviour on the client when the server throws various exceptions, and then emphasizes the use of checked exceptions.
如果字符串不能为空或者必须为特定格式,请检查格式并抛出异常。
If the string can't be empty or must be in a specific format, check for the format and throw an exception.
还要注意,这里仍然对异常未加检查,这将使代码异常简洁。
Also note the continuing pattern of unchecked exceptions, which keeps the code remarkably concise.
根据之前讨论的引用附件测试,如果收到表示终端url不正确的异常,检查每个测试用例运行时的端口号。
As discussed earlier in the testing of referenced attachments, check the port number of your runtime for each test case if you receive an exception stating that the endpoint URL is incorrect.
如果调用者不能以有意义的方式处理这个异常,那么考虑抛出一个未检查的(运行时)异常。
If the caller won't be able to handle the exception in a meaningful way, consider throwing an unchecked (run-time) exception.
已检查的、用户定义的异常。
“知道”,美吕说,“你在检查擦伤和皮肤异常。”
"Yes, " she says, "You're checking for any abrasions or dermatological abnormalities."
ServiceLocator还可以将检查的异常(在Bean查找或创建过程中引发的异常)转换为未经检查的异常。
The ServiceLocator can also translate the checked exceptions (that get thrown during lookup or creation of the bean) into unchecked exceptions.
可以抛出您需要的任何类型的异常(已检查、运行时或错误),只要方法签名支持它即可。
You can throw any kind of exception you like - checked, runtime, or error - as long as the method signature supports it.
可以抛出您需要的任何类型的异常(已检查、运行时或错误),只要方法签名支持它即可。
You can throw any kind of exception you like - checked, runtime, or error - as long as the method signature supports it.
应用推荐