MLClearError (C 函数)
MLClearError 已经被 WSClearError 所取代.
int MLClearError(MLINK link)
如果可能则清除 中的错误.
更多信息
- MLClearError() 会激活以前未激活的链接.
- MLClearError() 对于某些灾难性错误,例如,MLEDEAD,将返回0,它表明链接被意外关闭.
- MLClearError() 对于成功完成返回一个非零值.
- MLClearError() 在 MathLink 的标头文件 mathlink.h 中被声明.
范例
基本范例 (1)
#include <stdio.h>
#include "mathlink.h"
/* send an integer to a link and check for an error */
void f(MLINK lp)
{
if(! MLPutInteger(lp, 10))
{
printf("MathLink error: %s\n", MLErrorMessage(lp));
MLClearError(lp);
}
}