在Rcpp中替换“ stdout”

时间:2019-07-29 18:35:48

标签: c r rcpp

在使用Rcpp连接R中的C / C ++库时,stdout的替代品应该是什么。我知道printfcout的替代品分别是RprintfRcout,但是stdout本身并没有遇到任何问题。

stdout相比使用FILE*的C代码是

FILE* fp;
...
if (NULL != fp && stdout != fp)
        (void) fclose(fp);

R CMD check抱怨以下错误

  

找到了“ ___stdoutp”,可能来自“ stdout”(C)       对象:“ io_png.o”

Rcpp中stdout的替代方法是什么?

0 个答案:

没有答案