WSGetIntegerArray (C 函数)
int WSGetIntegerArray(WSLINK link,int **a,long **dims,char ***heads,long *d)
从由 link 指定的 WSTP 连接中获取一个整数数组,并把数组存于 a,维数存于 dims,深度存于 d.
更多信息
- 数组 a 在内存中的布局像一个被声明为 的 C 数组.
- heads 给出对应于出现在数组中的每层作为标头的符号名称的字符字符串列表.
- WSGetIntegerArray() 分配必须调用 WSDisownIntegerArray() 来释放的内存. 若 WSGetIntegerArray() 失败,函数的返回值表明一个错误,不要调用有 a 内容的 WSDisownIntegerArray().
- 外部程序不应该修改由 WSGetIntegerArray() 产生的数组.
- 若发生错误,则 WSGetIntegerArray() 返回0;若函数成功,则返回非零值.
- 若 WSGetIntegerArray() 失败,则使用 WSError() 检索错误代码.
- WSGetIntegerArray() 等同于 WSGetInteger32Array().
范例
基本范例 (1)
#include "wstp.h"
/* read an array of integers from a link */
void f(WSLINK lp)
{
int *data;
long *dims;
char **heads;
long d;
if(! WSGetIntegerArray(lp, &data, &dims, &heads, &d))
{
/* unable to read the integer array */
return;
}
/* ... */
WSDisownIntegerArray(lp, data, dims, heads, d);
}