MFC:新对象 - 错误消息?

发布于 2024-12-09 18:59:23 字数 641 浏览 0 评论 0原文

我有一个类(Event.h):

class CEvent 
{
   public:
   CEvent();
   ~CEvent();
   int nVal;
};

在 Event.cpp 中定义

 #include "event.h"
 CEvent::CEvent() {}
 CEvent::~CEvent() {}

在另一个类中,我包含了“event.h”并正在尝试以下操作:

 CEvent* pEvent = new CEvent();

但是我收到编译器错误:

error C2440: 'initializing' : cannot convert from 'CEvent' to 'CEvent *'
1>        No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called

我做错了什么?这确实是一件微不足道的事情,我离得太近而看不到它。

使用 VC 2008..fwiw..

I have a class (Event.h):

class CEvent 
{
   public:
   CEvent();
   ~CEvent();
   int nVal;
};

defined in Event.cpp

 #include "event.h"
 CEvent::CEvent() {}
 CEvent::~CEvent() {}

In a different class I have included "event.h" and am trying the following:

 CEvent* pEvent = new CEvent();

But Im getting a compiler error:

error C2440: 'initializing' : cannot convert from 'CEvent' to 'CEvent *'
1>        No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called

What am I doing wrong? This is something truly trivial and Im too close to see it.

Using VC 2008.. fwiw..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

微暖i 2024-12-16 18:59:23

CEvent也是MFC中的一个类的名称。
我会重命名该类以防止混淆。

CEvent is also the name of a class in MFC.
I would rename the class to prevent confusion.

泅渡 2024-12-16 18:59:23

发现问题:

#ifdef _DEBUG
#define DEBUG_NEW
#endif

被分在不同的班级。这对各地的“新”产生了影响!将此注释掉可以清除错误。

去算算吧。

Found the problem:

#ifdef _DEBUG
#define DEBUG_NEW
#endif

was included in a different class. This was impacting 'new' everywhere! Commenting this out clears the error.

Go figure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文