MLReleaseInteger64List (C 函数)

MLReleaseInteger64List 已经被 WSReleaseInteger64List 所取代.

void MLReleaseInteger64List(MLINK link,mlint64 *a,int n)

释放由 MLGetInteger64List() 分配的存储长度为 n 的数组 a 的内存.

更多信息

  • MLReleaseInteger64List() 在 MathLink 的标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include "mathlink.h"

/* read a list of 64-bit integers from a link and then release the memory to MathLink for deallocation */

void f(MLINK lp)
{
    mlint64 *data;
    int length;

    if(! MLGetInteger64List(lp, &data, &length))
        { /* unable to read the list of integers from lp */ }

    /* ... */

    MLReleaseInteger64List(lp, data, length);
}