MLGetByteString (C 函数)
MLGetByteString 已经被 WSGetByteString 所取代.
int MLGetByteString(MLINK link,const unsigned char **s,int *n,long spec)
从由 link 指定的 MathLink 连接中获取一个字符字符串,并把字符代码存储在 s,字符数存储在 n. 代码 spec 被用于 Mathematica 的字符代码大于255的任意字符.
更多信息
- MLGetByteString() 为字符代码数组分配内存. 必须调用 MLReleaseByteString() 释放该内存. 如果 MLGetByteString() 失败并且函数的返回值表明一个错误,不要调用含有 s 中的值的 WLReleaseByteString().
- MLGetByteString() 在没有出现特殊字符的情况下很方便.
- 由 MLGetByteString() 使用的字符代码与由 Mathematica 中 ToCharacterCode 返回的完全一样.
- MLGetByteString() 中的字符代码数组不是由零字符终止.
- 字符例如,换行符是由其原始字符代码指定,而不是 ASCII 的形式例如 ∖n.
- MLGetByteString() 返回不可变的数据.
- MLGetByteString() 在错误事件中返回0,如果函数成功则返回非零值.
- 如果 MLGetByteString() 失败,则使用 MLError() 检索错误代码.
- MLGetByteString() 在 MathLink 的标头文件 mathlink.h 中被声明.
范例
基本范例 (1)
#include "mathlink.h"
/* read a string encoded with codes from ToCharacterCode[] from a link */
void f(MLINK lp)
{
const unsigned char *string;
int length;
if(! MLGetByteString(lp, &string, &length, 0))
{
/* unable to read the byte string from lp */
return;
}
/* ... */
MLReleaseByteString(lp, string, length);
}