WSTestHeadWithArgCount (C 函数)
int WSTestHeadWithArgCount(WSLINK l, const char *s, int *n)
检验由 l 指定的 WSTP 连接读取的下一个对象是否为一个标头为 s 的表达式,且表达式参数的数量是否为 n.
更多信息
- 若链接上的当前表达式不是以符号作为标头的函数,或该符号的名称与 s 不相符,或函数参数的数量不是 n,则 WSTestHeadWithArgCount() 失败.
- 当函数返回时,WSTestHeadWithArgCount() 会在 n 中储存函数单数的实际数量.
- 若发生错误,则 WSTestHeadWithArgCount() 返回0;若函数成功,则返回非零值.
- 若 WSTestHeadWithArgCount() 失败,则使用 WSError() 检索错误代码.
- 若函数失败,则 WSTestHeadWithArgCount() 会恰好在调用 WSTestHeadWithArgCount() 之前重置链接上表达式的流指针(stream pointer). 这个操作表现得就像是程序员调用 WSCreateMark(l); WSTestHeadWithArgCount(...); WSSeekToMark(...) 一样.
- WSTP 的标头文件 wstp.h 已对 WSTestHeadWithArgCount() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* A function to test whether the next expression on the Link is Plus[a,b] */
void f(WSLINK l)
{
int args = 2;
const char *symbol;
if(! WSTestHeadWithArgCount(l, "Plus", &args))
{ /* Next expression is not Plus, or does not have two args */ }
if(! WSGetSymbol(l, &symbol))
{ /* Unable to read symbol */ }
/* Check if symbol is 'a' */
WSReleaseSymbol(l, symbol);
if(! WSGetSymbol(l, &symbol))
{ /* Unable to read symbol */ }
/* Check if the symbol is 'b' */
WSReleaseSymbol(l, symbol);
}