6

我知道这可能是一个简单的问题,但在过去的一个半小时里我一直在研究它,我真的很迷茫。

这里是编译器错误:

synthesized method ‘File& File::operator=(const File&)’ first required here 

我有这段代码:

void FileManager::InitManager()
{
    int numberOfFile = Settings::GetSettings()->NumberOfFile() + 1;

    for( unsigned int i = 1; i < numberOfFile; i++ )
    {
        std::string path = "data/data" ;
        path += i;
        path += ".ndb";

        File tempFile( path );

        _files.push_back( tempFile ); // line that cause the error

        /*if( PRINT_LOAD )
        {
            std::cout << "Adding file " << path << std::endl;
        }*/
    }
}

_files 如果在此标头中定义:

#pragma once

//C++ Header
#include <vector>

//C Header

//local header
#include "file.h"

class FileManager
{
public:
    static FileManager* GetManager();
    ~FileManager();

    void LoadAllTitle();

private:
    FileManager();
    static FileManager* _fileManager;

    std::vector<File> _files;
};

File是我创建的一个对象,无非就是一个简单的处理文件IO的接口。我过去已经完成了用户定义对象的矢量,但这是我第一次收到此错误。

这是 File 对象的代码:File.h

#pragma once

//C++ Header
#include <fstream>
#include <vector>
#include <string>

//C Header

//local header

class File
{
public:
    File();
    File( std::string path );
    ~File();

    std::string ReadTitle();

    void ReadContent();
    std::vector<std::string> GetContent();

private:
    std::ifstream _input;
    std::ofstream _output;

    char _IO;
    std::string _path;
    std::vector<std::string> _content;
};

文件.cpp

#include "file.h"

File::File()
    : _path( "data/default.ndb" )
{
}

File::File( std::string path )
    : _path( path )
{
}

File::~File()
{
}

void File::ReadContent()
{
}

std::string File::ReadTitle()
{
    _input.open( _path.c_str() );
    std::string title = "";

    while( !_input.eof() )
    {
        std::string buffer;
        getline( _input, buffer );

        if( buffer.substr( 0, 5 ) == "title" )
        {
            title = buffer.substr( 6 ); // 5 + 1 = 6... since we want to skip the '=' in the ndb
        }
    }

    _input.close();
    return( title );
}

std::vector<std::string> File::GetContent()
{
    return( _content );
}

我正在使用 gcc 在 linux 下工作。

任何有关解决方案的提示或技巧都值得赞赏。

对不起,很长的帖子。

谢谢

4

2 回答 2

9

在 C++03 中,std::vector<T>要求它T是可复制构造和可复制分配的。File包含标准流数据成员,标准流是不可复制的,因此File也是如此。

您的代码在 C++11 中可以正常工作(使用移动构造/移动分配),但您需要避免将标准流对象按值保存为 C++03 中的数据成员。我建议将您的编译器升级到支持 C++11 移动语义的编译器或使用Boost 的智能指针之一。

于 2012-04-24T20:25:58.873 回答
2

我不确定错误消息,但是这一行:

_files.push_back( tempFile );

要求File具有公共复制构造函数。由于您提供了其他构造函数,因此您还必须提供这个构造函数。编译器不会合成它。

于 2012-04-24T20:25:32.527 回答