WSPutInteger32 (C 函数)

int WSPutInteger32(WSLINK link,int i)

把一32位整数写入由 link 指定的 WSTP 连接.

更多信息

  • 若发生错误,则 WSPutInteger32() 返回0;若函数成功,则返回非零值.
  • WSPutInteger32() 失败,则使用 WSError() 检索错误代码.
  • 通过给定数字列表,然后使用 FromDigits 转换成数字,便可以发送任意精度的整数给 Wolfram 语言.
  • WSTP 的标头文件 wstp.h 已对 WSPutInteger32() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* send the expression Times[10,30] to a link */

void f(WSLINK lp)
{
    if(! WSPutFunction(lp, "Times", 2))
        { /* unable to send the function to lp */ }

    if(! WSPutInteger32(lp, 10))
        { /* unable to send the integer to lp */ }

    if(! WSPutInteger32(lp, 30))
        { /* unable to send the integer to lp */ }

    if(! WSEndPacket(lp))
        { /* unable to send the end-of-packet sequence to lp */ }

    if(! WSFlush(lp))
        { /* unable flush any buffered outgoing data in lp */ }
}