std::ofstream 的 klocwork 问题打开

klocwork issue for std::ofstream open

Klocwork 抛出

resource acquired to 'ofs.open("file.txt", std::ofstream::out)' may be lost here

对于下面的代码。

#include <iostream>
#include <fstream>

void main()
{
    std::ofstream ofs;
    ofs.open("file.txt", std::ofstream::out);
    if (ofs.is_open())
    {
        std::cout << "file open success\n";
    }
    ofs.close();
}

我没有发现上述代码有任何问题。有人可以解释这里需要做什么来解决这个问题。

你还有这个问题吗? 我有一个满足 Klocwork 的解决方法: 使用 RAII:

std::ofstream ofs( "file.txt", std::ios::binary );

如果这不起作用,请使用温度计。

        std::ofstream temp( "file.txt", std::ios::binary );
        if( !temp.is_open() )
        {
            temp.close();
        }
        else
        {
            m_outStream = std::move( temp );
        }