void MLReleaseByteSymbol(MLINK link, const unsigned char *s, int len) 释放由 MLGetByteSymbol() 分配的存储对应于一个符号名称的字符字符串 s 的内存.
#include "mathlink.h"/* read a symbol from a link and then release the memory to MathLink for deallocation */void f(MLINK lp){ unsigned char *sym; int len; if(! MLGetByteSymbol(lp, &sym, &len)) { /* unable to read a symbol from lp */ } /* ... */ MLReleaseByteSymbol(lp, sym, len);}
MLGetByteString()
400+ new features, including the new Wolfram Predictive Interface, social network analysis, enterprise CDF deployment, and more »