WSGetIntegerList (C 函数)

int WSGetIntegerList(WSLINK link,int **a,long *n)

从由 link 指定的 WSTP 连接中获取一个整数列表,把整数存在数组 a,列表的长度存在 n 中.

更多信息

  • WSGetIntegerList() 为整数数组分配内存. 必须调用 WSDisownIntegerList() 释放该内存. 如果 WSGetIntegerList() 失败,函数的返回值表明一个错误,不要调用有 a 内容的 WSDisownIntegerList().
  • WSGetIntegerList() 返回不可变的数据.
  • 若发生错误,则 WSGetIntegerList() 返回0;若函数成功,则返回非零值.
  • WSGetIntegerList() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSGetIntegerList() 作出声明.
  • WSGetIntegerList() 等同于 WSGetInteger32List().

范例

基本范例  (1)

#include "wstp.h"

/* read a list of integers from a link */

void f(WSLINK lp)
{
    int *data;
    long length;

    if(! WSGetIntegerList(lp, &data, &length))
        {
            /* unable to read the integer list from lp */
            return;
        }

    /* ... */

    WSDisownIntegerList(lp, data, length);
}