Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
244 views
in Technique[技术] by (71.8m points)

c++ - Unbuffered I/O is not working

I have this program that is supposed to disable buffering for std::cout. I want to print out what I've written to the output device, but when I print str nothing comes out.

#include <iostream>
#include <sstream>
#include <string>

int main()
{
    std::cout.rdbuf()->pubsetbuf(0, 0);
    std::cout.unsetf(std::ios::unitbuf);

    std::cout << "Hello, World
";

    std::stringstream ss;
    ss << std::cout.rdbuf();

    std::string str{ss.str()};

    std::cout << str; // nothing
    // str.size() == 0
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
std::cout.rdbuf()->pubsetbuf(0, 0);

This doesn't necessarily do anything because cout isn't specified to use a std::filebuf.

std::cout.unsetf(std::ios::unitbuf);

This clears the unitbuf bit so I/O is not unbuffered. Calling setf instead should request unbuffered I/O as desired.

ss << std::cout.rdbuf();

This attempts to read cout so it will extract nothing.

Just relying on setf( std::ios::unitbuf ) works as expected:

#include <iostream>
#include <unistd.h>

int main() {
    std::cout.setf( std::ios::unitbuf );

    std::cout << "Hel";
    write( 1, "lo, wo", 6 );
    std::cout << "rld!
";
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...