The definitive Wolfram Language and notebook experience
The original technical computing environment
All-in-one AI assistance for your Wolfram experience
More mobile apps
We deliver solutions for the AI era—combining symbolic computation, data-driven insights and deep technical expertise
WolframConsulting.com
More Wolfram Solutions
More Solutions for Education
Courses in computing, science, life and more
Learn, solve problems and share ideas.
News, views and insights from Wolfram
Resources for
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);}
C 函数: MLGetByteString()
2007年引入 (6.0)