第23448题 单选
C++中通过cout重定向输出日志到log.txt,横线处应填入的代码是?

小杨用文件重定向实现在 log.txt 文件中输出日志,现有代码如下,横线处应填写:

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main() {
    ofstream log_file("log.txt");

    streambuf* original_cout = cout.rdbuf();
    cout.rdbuf(log_file.rdbuf());

    _________________________ // 在此处填入代码

    cout.rdbuf(original_cout); // 恢复原始的标准输出缓冲区
    return 0;
}
A

cout << "This output will go to the log file." << endl;

B

log_file << "This output will go to the log file." << endl;

C

cout >> "This output will go to the log file." >> endl;

D

log_file >> "This output will go to the log file." >> endl;