我对ofstream有点困惑。ofstream 继承自 ostream。它还从 ostream 继承了方法“operator<<”。
ofstream x;
x << "hello world" << endl;
//cout << "hello world" << endl;
system("pause");
return 0;
上面的代码片段试图使用 ofsream 的对象将“hello world”输出到终端,就像 cout 一样。
上面的代码片段可以编译但什么也不显示。为什么会这样?
谢谢,