0

我尝试编写一个文件管理器的 c++ 程序。我写了一个“CommandEngine”类,它处理命令,一个“Command”类,它是一个抽象类,包含“执行”函数等。我尝试在指定路径上创建一个文件(没有在那个开发级别给出响应我的程序)。我写的代码编译成功,但是当我尝试执行它时,我得到了一个错误

“ FileManager2.exe 中 0x0022DC96 处未处理的异常:0xC0000005:访问冲突读取地址 0x00000014。”

我将非常感谢任何帮助。谢谢大家。

// FileManager.cpp



#include <stdio.h>
#include <tchar.h>
#include "CommandEngine.h"
#include "Command.h"
#include "CreateFile.h"
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    CommandEngine C;
    C.CommandHandler();
    return 0;


}



// CommandEngine.h


#ifndef COMMANDENGINE_H
#define COMMANDENGINE_H

#include "Command.h"
#include "CreateFile.h"
#include "Input.h"
#include <map> 
#include <string>
using namespace std; 



class CommandEngine
{




public:

    typedef map< string , Command * >  MapOfHandlers;
    MapOfHandlers CommandHandlers;

    Input * input;

    Command * GetCommand(const string & commandName)
    {
        map< string , Command * >::iterator iter;
        iter = CommandHandlers.find(commandName);
        return iter->second;
    };

    void CommandHandler();

    CommandEngine();
    ~CommandEngine();



};

CommandEngine::CommandEngine()
{
    CreateFileCl * Cr;
    string s = "create";
    CommandHandlers.insert(pair<string, Command *>(s,  Cr));



}

CommandEngine::~CommandEngine()
{
}



void CommandEngine::CommandHandler()
{


    Response response;

    Command * command = GetCommand( ( input->ReadInput() ) -> GetCommandName());
    command->Execute(input, &response);

    WriteResponse(&response);
}


#endif // COMMANDENGINE_H



//Command.h

#ifndef COMMAND_H
#define COMMAND_H 






#include "Input.h"
#include "Response.h"
using namespace std;

class Command
{   public:
    virtual void Execute(Input * input, Response * response ) = 0;
};

#endif // Command_H



/*void StrToChar(string s)
{
    string s;
string writable = new char[str.size() + 1];
std::copy(str.begin(), str.end(), writable);
writable[str.size()] = '\0'; // don't forget the terminating 0

// don't forget to free the string after finished using it
delete[] writable;

} */


////////////////////////////////////////////////////////////////////////////////////////////////////

// Input.h


#ifndef INPUT_H
#define INPUT_H


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

class Input
{

public:
    string CommandName;
    string FileName;
    string DestinationPath; // For " copy " command


    Input * ReadInput();

    const string  GetCommandName()// can be no useful
    {
        return CommandName;

    };

    Input();
    ~Input();



};

Input::Input()
{
    CommandName = FileName = DestinationPath = " ";
}

Input::~Input()
{

}


Input * Input::ReadInput()
{
    cout<<"Enter command";


    getline(cin,CommandName);
    getline(cin, FileName);
    getline(cin,DestinationPath );
    return this;

}

#endif // INPUT_H



// CreateFile.h


#ifndef CREATEFILE_H
#define CREATEFILE_H

#include <windows.h>
#include "Command.h"


using namespace std;

class CreateFileCl : public Command
{

public:


    virtual void Execute(Input * input, Response * response );


};

void CreateFileCl::Execute(Input * input, Response * response )
{
    /*const string text = (input->FileName).c_str();
 wchar_t wtext[20];
 mbstowcs(wtext, text, strlen(text)+1);//Plus null
 LPWSTR ptr = wtext; */


    CreateFileA( (input->FileName).c_str(), 0, 0, 0, 0, 0, 0);

}


#endif // CREATEFILE_H
4

2 回答 2

1

您有许多可能导致代码崩溃的未初始化对象。

首先,您不会在 CommandEngine 类中初始化输入input->ReadInput(),因此当您调用时,您使用的是未初始化的指针。

其次,正如凯西已经说过的,您不会初始化插入到CommandHandlers列表中的CreateFileCl对象,因此当您尝试执行将失败的命令时。

您可以通过更新您的CommandEngine构造函数来初始化这两个对象来解决此问题。

CommandEngine::CommandEngine()
{
    input = new Input();
    CreateFileCl * Cr = new CreateFileCl();
    string s = "create";
    CommandHandlers.insert(pair<string, Command *>(s,  Cr));
}

请注意,您还需要删除CommandEngine析构函数中的输入对象。

CommandEngine::~CommandEngine()
{
    delete input;
}

为CreateFileCl对象释放内存更复杂 - 假设可能有多个命令处理程序,因此您需要遍历列表并删除所有它们。但实际上你不应该像这样分配内存。理想情况下,您应该使用为您处理内存管理的智能指针

于 2013-07-19T19:05:07.823 回答
1

CommandEngine构造函数中,您CreateFileCl在地图中存储了一个未初始化的指针CommandHandlers。当您稍后尝试Command::Execute通过该指针调用时,会发生可怕的事情(未定义的行为)。

于 2013-07-19T18:45:07.353 回答