打印到文件和控制台 C++

Print to file and console c++

我正在尝试记录我的事件,所以我想使用 ostringstream 来保存输出,然后将它发送到一个函数,在该函数中我将输出打印在屏幕上和文件 fstream fileOut 上。它不会工作,它只是给我随机数,似乎不会在同一个文件上输出所有新输出,而是每次都创建一个新文件并删除之前的内容。我该怎么做?

印刷发生的地方:

void Event::output(ostringstream* info) {
    std::cout << info << std::endl;
    fileOut << info << std::endl;
}

输出发生的位置:

ostringstream o;
if (time < SIM_TIME) {

    if (status->tryAssemble(train)) {
        Time ct;
        ct.fromMinutes(time);
        o << ct << " Train [" << train->getTrainNumber() << "] ";

        Time t(0, DELAY_TIME);
        o << "(ASSEMBLED) from " << train->getStart() << " " << train->getScheduledStartTime() <<
            " (" << train->getStartTime() << ") to " << train->getDest() << " " << train->getScheduledDestTime() <<
            " (" << train->getDestTime() << ") delay (" << train->getDelay() << ") speed=" << train->getScheduledSpeed() <<
            " km/h is now assembled, arriving at the plateform at " << train->getStartTime() - t << endl << endl;

        fileOut.open("testfile.txt", std::ios::out);
        if (!fileOut.is_open()) 
            exit(1);            //could not open file
            output(&o);
        train->setStatus(ASSEMBLED);
        time += ASSEMBLE_TIME;
        Event *event = new ReadyEvent(simulation, status, time, train);
        simulation->addEvent(event);

It wont work, it just gives me random numbers

您正在通过指针将 ostringstream 传递给您的函数。没有 operator<<ostringstream* 指针作为输入并打印其字符串内容。但是有一个 operator<<void* 作为输入并打印指针指向的内存地址。那就是您看到的 "random numbers"。任何类型的指针都可以分配给 void* 指针。

您需要取消引用 ostringstream* 指针才能访问实际的 ostringstream 对象。即便如此,仍然没有 operator<<ostringstream 作为输入。然而,ostringstream有一个str()方法,returns一个std::string,还有一个operator<<打印一个std::string

void Event::output(ostringstream* info) {
    std::string s = info->str();
    std::cout << s << std::endl;
    fileOut << s << std::endl;
}

也就是说,您应该通过常量引用而不是指针来传递 ostringstream,因为该函数不允许传入 null ostringstream,并且它不会修改ostringstream 以任何方式:

void Event::output(const ostringstream &info) {
    std::string s = info.str();
    std::cout << s << std::endl;
    fileOut << s << std::endl;
}

...

output(o);

seem not to output all new outputs on the same file but just creates a new file everytime and deletes what was on it before.

那是因为您没有使用 appate 标志 1 打开文件,所以它每次都会创建一个新文件,丢弃任何现有文件的内容。如果您想附加到现有文件,则需要:

  • 使用 ate 标记 "seek to the end of stream immediately after open":

    fileOut.open("testfile.txt", std::ios::out | std::ios::ate);
    
  • 使用 app 标记 "seek to the end of stream before each write":

    fileOut.open("testfile.txt", std::ios::out | std::ios::app);
    

1:如果fileOutstd::ofstream,则不需要明确指定std::ios::out