| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 952 人关注过本帖
标题:VC++ 6.0 编译错误请教
只看楼主 加入收藏
aoyufly
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-11-12
收藏
 问题点数:0 回复次数:3 
VC++ 6.0 编译错误请教
编译出现如下错误,请各位高人指教,先谢谢了!


w.h
#include <afxwin.h>
class CMyApp:public CWinapp
{
public:
    virtual BOOL InitInstance();
};
class CMainWnd:public CFrameWnd
{
protected:
    int x1,x2,y1,y2;
    afx_msg void OnLButtonDown(UINT nFlags,CPoint point);
public:
    CMainWnd();
    ~CMainWnd();
    DECLARE_MESSAGE_MAP();
};



chen.cpp
#include <w.h>

BEGIN_MESSAGE_MAP(CMainWnd,CFrameWnd)
ON_WM_LBUTTONDOWN()
END_MESSAGE_MAP()


CMainWnd::CMainWnd()
{
    x1=y1=20;
    x2=y2=200;
}

CMainWnd::~CMainWnd()
{
}
void CMainWnd::OnLButtonDown(UINT nFlags,CPoint point)
{
    CDC *pDC=GetDC;
    pDC->Ellipse(x1,y1,x2,y2);
    ReleaseDC(pDC);
}

BOOL CMyApp::InitInstance()
{
    CMainWnd *p=new CMainWnd;
    p->Create(0,"chen");
    this->m_pMainWnd=p;
    p->ShowWindow(SW_SHOWMAXIMIZED);
    p->UpdateWindow();
    return TRUE;
}

CMyApp myapp;


--------------------Configuration: project9 - Win32 Debug--------------------
Compiling...
chen.cpp
F:\dxwvc6examp\project9\chen.cpp(9) : error C2084: function '__thiscall CMainWnd::CMainWnd(void)' already has a body
F:\dxwvc6examp\project9\chen.cpp(10) : error C2065: 'x1' : undeclared identifier
F:\dxwvc6examp\project9\chen.cpp(10) : error C2065: 'y1' : undeclared identifier
F:\dxwvc6examp\project9\chen.cpp(11) : error C2065: 'x2' : undeclared identifier
F:\dxwvc6examp\project9\chen.cpp(11) : error C2065: 'y2' : undeclared identifier
F:\dxwvc6examp\project9\chen.cpp(15) : error C2084: function '__thiscall CMainWnd::~CMainWnd(void)' already has a body
F:\dxwvc6examp\project9\chen.cpp(18) : error C2509: 'OnLButtonDown' : member function not declared in 'CMainWnd'
        f:\dxwvc6examp\project8\w.h(8) : see declaration of 'CMainWnd'
F:\dxwvc6examp\project9\chen.cpp(26) : error C2264: 'CMainWnd::CMainWnd' : error in function definition or declaration; function not called
Error executing cl.exe.

project9.exe - 8 error(s), 0 warning(s)
搜索更多相关主题的帖子: 编译 
2008-11-12 21:52
aoyufly
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-11-12
收藏
得分:0 
急!!!谢谢哪位大侠路过指点.不胜感激!
2008-11-12 23:26
沼泽
Rank: 4
等 级:业余侠客
威 望:8
帖 子:291
专家分:228
注 册:2008-9-15
收藏
得分:0 
w.h的类的成员函数的申明在chen.cpp进行定义,根据错误提示估计是这的原因,楼主把chen.cpp改成w.cpp试试
2008-11-13 08:47
aoyufly
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-11-12
收藏
得分:0 
多谢! 运行时还是有同样的问题.
2008-11-15 20:25
快速回复:VC++ 6.0 编译错误请教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033806 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved