WSPutRealNumberAsUTF32String (C 函数)

int WSPutRealNumberAsUTF32String(WSLINK l, const unsigned int *s, int n)

将一个编码为 UTF-32、长度 n 的字符串 s 的浮点数发送到由 l 指定的 WSTP 连接.

更多信息

  • 将数字 s"3.14159" 的形式发送.
  • 编码为 UTF-32 的数字 s 必须以一个字节顺序标记开始.
  • 字符串的长度 n 必须包括该字节顺序标记.
  • 若发生错误,则 WSPutRealNumberAsUTF32String() 返回0;若函数成功,则返回非零值.
  • WSTP 的标头文件 wstp.h 已对 WSPutRealNumberAsUTF32String() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function to put the expression Sqrt[2.75] to a link */

void f(WSLINK l)
{    
    unsigned int theNumber[5];

    theNumber[0] = 0xFEFF;
    theNumber[1] = '2';
    theNumber[2] = '.';
    theNumber[3] = '7';
    theNumber[4] = '5';

    if(! WSPutFunction(l, "Sqrt", 1))
    { /* Unable to put Sqrt[] to the link */ }

    if(! WSPutRealNumberAsUTF32String(l, theNumber, 5))
    { /* Unable to put the number to the link */}

    if(! WSEndPacket(l))
    { /* Unable to put the end-of-packet sequence to l */ }

    if(! WSFlush(l))
    { /* Unable to flush any output buffered in l */ }
}