MLReleaseInteger64Array (C 函数)

MLReleaseInteger64Array 已经被 WSReleaseInteger64Array 所取代.

void MLReleaseInteger64Array(MLINK link,mlint64 *a,int *dims,char **heads,int d)

释放由 MLGetInteger64Array() 分配的存储维数为 dims 和标头为 heads 的数组 a 的内存.

更多信息

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

范例

基本范例  (1)

#include "mathlink.h"

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

void f(MLINK lp)
{
    mlint64 *data;
    int *dimensions;
    char **heads;
    int depth;


    if(! MLGetInteger64Array(lp, &data, &dimensions, &heads, &depth))
        { /* unable to read the array of integers from lp */ }

    /* ... */

    MLReleaseInteger64Array(lp, data, dimensions, heads, depth);
}