MLReleaseInteger32Array (C 函数)

MLReleaseInteger32Array 已经被 WSReleaseInteger32Array 所取代.

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

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

更多信息

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

范例

基本范例  (1)

#include "mathlink.h"

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

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

    if(! MLGetIntegerArray(lp, &data, &dimensions, &heads))
        { /* unable to read the integer array from lp */ }

    /* ... */

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