9

以下代码是在 Windows 7 x64 上使用 VC++ Nov 2012 CTP 编译的。

#include <fstream>

using namespace std;

int main()
{
    ofstream fout("log.txt", ios::app|ios::trunc);
    if (!fout)
    {
        cout << "An error occurred!" << endl; // Always go here! Why?
    }
}

cppreference.com 网站并没有说ios::app不能与ios::trunc.

和的确切语义是什么?ios::appios::trunc

4

2 回答 2

22

filebuf这些标志传递给的构造函数†具有基于 C++11 中表 132 中定义的标志的行为:

+-----------------------------------+-------------------+
|     ios_base flag combination     |  stdio equivalent |
| binary  in    out    trunc    app |                   |
+-----------------------------------+-------------------+
|               +                   |  "w"              |
|               +               +   |  "a"              |
|                               +   |  "a"              |
|               +       +           |  "w"              |
|        +                          |  "r"              |
|        +      +                   |  "r+"             |
|        +      +       +           |  "w+"             |
|        +      +               +   |  "a+"             |
|        +                      +   |  "a+"             |
+-----------------------------------+-------------------+
|   +           +                   |  "wb"             |
|   +           +               +   |  "ab"             |
|   +                           +   |  "ab"             |
|   +           +       +           |  "wb"             |
|   +    +                          |  "rb"             |
|   +    +      +                   |  "r+b"            |
|   +    +      +       +           |  "w+b"            |
|   +    +      +               +   |  "a+b"            |
|   +    +                      +   |  "a+b"            |
+-----------------------------------+-------------------+

如您所见,在该表中找不到您的标志组合。

[C++11: 27.9.1.4/2]: [..]如果mode不是表中显示的某些标志组合,则打开失败。

这些是语义。

[C++11: 27.9.1.7/2] &[C++11: 27.9.1.11/2]向我们展示模式是从流对象传递到缓冲区对象的。

于 2013-02-26T08:49:03.543 回答
6
  • app (=append):在每次输出操作之前将流的位置指示器设置为流的末尾
  • trunc (=truncate) 任何当前内容都被丢弃,假设打开时长度为零。

如您所见,将两者放在一起是没有意义的。

于 2013-02-26T08:03:46.943 回答