WSPutString (C 函数)

int WSPutString(WSLINK link,const char*s)

把一个零结尾的 C 字符字符串写入由 link 指定的 WSTP 连接.

更多信息

  • 字符串中的原始反斜杠必须以俩个字符 '' 发送.
  • 特殊字符只能使用由 WSGetString()返回的格式发送.
  • 常用的编码与 WSGetString() 一样.
  • 若发生错误,则 WSPutString() 返回0;若函数成功,则返回非零值.
  • WSPutString() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSPutString() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* send a string representing an expression to a Mathematica kernel
for evaluation */

void f(WSLINK lp)
{
/* construct the packet to be sent to the kernel */
    WSPutFunction(lp, "EvaluatePacket", 1);
WSPutFunction(lp, "ToExpression", 1);
WSPutString(lp, (const char *)"3+4/Sqrt[19.2]");
WSEndPacket(lp);

/* send the packet */
    if(! WSFlush(lp))
        { /* unable to flush an outgoing data buffered in lp */ }

}