我需要使用Linux函数ssize_t write(int fd, const void *buf, size_t count);打印“ word = n”(其中[0..10]中的n)的函数。尝试使用fprintf,但是会产生奇怪的结果:程序在约1%的调用“ woword = n”中打印,而length例如“ woword = 7”为7。Printf可以正确打印。我做错了还是这是书包?

if ((id_result = open( out , O_WRONLY)) <= 0) {
        fprintf(stderr, "%s : %s\n", currentDateTime().c_str(), "could not open output\0");
        ret = P_STREAMS_LOAD_ERROR;
    }

    void printProbability( int probability ){
      char buf[50];
      memset( buf, '\0', 50 );
      int length = sprintf( buf, "word=%i\n\0", probability );
      fprintf(stderr, "debug : word=%i len = %i\n\0", probability, length );
      int result = write( id_result, buf, length );
      if( result == -1){
        fprintf(stderr, "%s : %s\n", currentDateTime().c_str(), "error \n");
      }
    }


编辑:

据我了解,我们有2种理论:
1)混合printf和写
2)在fprintf中使用'\ 0'和'\ n'

int length = sprintf( buf, "word=%i", probability );
int result = write( id_result, buf, length );
write( id_result, "\n", 1 );


与此代码我仍然有相同的错误

aa帮我:))

最佳答案

如果您要插入对printf(或write)和fprintf(stderr, ...)的调用,则输出不一定按顺序显示。正在进行缓冲,实际输出可能不会在行尾字符处切换。

关于c++ - printf和fprintf的结果不同,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28460415/

10-13 06:59