当前位置: 代码迷 >> VC/MFC >> struct 'Command' : no copy constructor available,该如何处理
  详细解决方案

struct 'Command' : no copy constructor available,该如何处理

热度:210   发布时间:2016-05-02 03:37:04.0
struct 'Command' : no copy constructor available
struct Command
{

char m_command[12];
CEvent m_event;
Command();
};

Command CBoard::OpenVaccumePump()
{
Command command;
.....//一些省略的操作
return command;

}

麻烦各位帮忙看看这个怎么修改,哪出的问题
------解决思路----------------------
添加 拷贝构造函数。
Command(Command const &);
  相关解决方案