| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 438 人关注过本帖
标题:求助,运行c++程序时出现这个问题
只看楼主 加入收藏
stys
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-5-12
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:3 
求助,运行c++程序时出现这个问题
Compiling...
comm.cpp
Linking...
comm.obj : error LNK2001: unresolved external symbol "public: __thiscall CCommDlg::CCommDlg(class CWnd *)" (??0CCommDlg@@QAE@PAVCWnd@@@Z)
Debug/comm.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.

comm.exe - 1 error(s), 0 warning(s)
以下是程序:
// comm.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "comm.h"
#include "commDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCommApp

BEGIN_MESSAGE_MAP(CCommApp, CWinApp)
    //{{AFX_MSG_MAP(CCommApp)
        // NOTE - the ClassWizard will add and remove mapping macros here.
        //    DO NOT EDIT what you see in these blocks of generated code!
    //}}AFX_MSG
    ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCommApp construction

CCommApp::CCommApp()
{
    // TODO: add construction code here,
    // Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCommApp object

CCommApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCommApp initialization

BOOL CCommApp::InitInstance()
{
    if (!AfxSocketInit())
    {
        return FALSE;
    }
    AfxEnableControlContainer();
    // Standard initialization
    // If you are not using these features and wish to reduce the size
    //  of your final executable, you should remove from the following
    //  the specific initialization routines you do not need.

#ifdef _AFXDLL
    Enable3dControls();            // Call this when using MFC in a shared DLL
#else
    Enable3dControlsStatic();    // Call this when linking to MFC statically
#endif

    CCommDlg dlg;
    m_pMainWnd = &dlg;
    int nResponse = dlg.DoModal();
    if (nResponse == IDOK)
    {
        // TODO: Place code here to handle when the dialog is
        //  dismissed with OK
    }
    else if (nResponse == IDCANCEL)
    {
        // TODO: Place code here to handle when the dialog is
        //  dismissed with Cancel
    }

    // Since the dialog has been closed, return FALSE so that we exit the
    //  application, rather than start the application's message pump.
    return FALSE;
}
请教这个问题的解决办法,谢谢!
搜索更多相关主题的帖子: 运行 
2010-05-19 16:58
stys
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-5-12
收藏
得分:0 
是不是问题太小白了,怎么没人理我呀
2010-05-20 08:39
幽园香客
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:231
专家分:142
注 册:2006-2-27
收藏
得分:20 
问题在在于:CCommDlg::CCommDlg(class CWnd *)" (??0CCommDlg@@QAE@PAVCWnd@@@Z)。
建议你仔细看下CCommDlg这个类,特别是这个类里面的构造函数。看看这个类的声明与实现是否添加到当前工程中,这个类的构造函数是否有问题等等。

做个有用的人!
2010-05-21 10:17
stys
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-5-12
收藏
得分:0 
以下是引用幽园香客在2010-5-21 10:17:36的发言:

 问题在在于:CCommDlg::CCommDlg(class CWnd *)" (??0CCommDlg@@QAE@PAVCWnd@@@Z)。
建议你仔细看下CCommDlg这个类,特别是这个类里面的构造函数。看看这个类的声明与实现是否添加到当前工程中,这个类的构造函数是否有问题等等。
那么这个类的声明与实现如何添加到当前工程中呢?
2010-05-21 12:34
快速回复:求助,运行c++程序时出现这个问题
数据加载中...
 
   



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

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