lstnsock.h这个头文件有如下不懂的地方

zsww111 2008-07-25 04:29:08
这个文件是网上一个网络编程例子里的,文件内容如下:
// lstnsock.h : interface of the CListeningSocket class
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.

#ifndef __LSTNSOCK_H__
#define __LSTNSOCK_H__

class CChatServerDoc;

class CListeningSocket : public CSocket
{
DECLARE_DYNAMIC(CListeningSocket);////////////////////////////////////////这里有问题
private:
CListeningSocket(const CListeningSocket& rSrc); // no implementation
void operator=(const CListeningSocket& rSrc); // no implementation

// Construction
public:
CListeningSocket(CChatServerDoc* pDoc);

// Attributes
public:
CChatServerDoc* m_pDoc;

// Overridable callbacks
protected:
virtual void OnAccept(int nErrorCode);

// Implementation
public:
virtual ~CListeningSocket();

#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
#endif // __LSTNSOCK_H__
我尝试自己创建类似的内容,也继承于CSocket,但编译时提示
DECLARE_DYNAMIC(CListeningSocket);//这里出错,提示内容如下:
unresolved external symbol "public: virtual struct CRuntimeClass * __thiscall CListeningSocket::GetRuntimeClass(void)const " (?GetRuntimeClass@CListeningSocket@@UBEPAUCRuntimeClass@@XZ)
请问这个文件是如何派生出的?为什么会出错呢
...全文
112 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
Recruitment021 2008-07-28
  • 打赏
  • 举报
回复
帮你转一下,好看点!
Recruitment021 2008-07-28
  • 打赏
  • 举报
回复
这个文件是网上一个网络编程例子里的,文件内容如下: 
// lstnsock.h : interface of the CListeningSocket class
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.

#ifndef __LSTNSOCK_H__
#define __LSTNSOCK_H__

class CChatServerDoc;

class CListeningSocket : public CSocket
{
DECLARE_DYNAMIC(CListeningSocket);////////////////////////////////////////这里有问题
private:
CListeningSocket(const CListeningSocket& rSrc); // no implementation
void operator=(const CListeningSocket& rSrc); // no implementation

// Construction
public:
CListeningSocket(CChatServerDoc* pDoc);

// Attributes
public:
CChatServerDoc* m_pDoc;

// Overridable callbacks
protected:
virtual void OnAccept(int nErrorCode);

// Implementation
public:
virtual ~CListeningSocket();

#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
#endif // __LSTNSOCK_H__
我尝试自己创建类似的内容,也继承于CSocket,但编译时提示
DECLARE_DYNAMIC(CListeningSocket);//这里出错,提示内容如下:
unresolved external symbol "public: virtual struct CRuntimeClass * __thiscall CListeningSocket::GetRuntimeClass(void)const " (?GetRuntimeClass@CListeningSocket@@UBEPAUCRuntimeClass@@XZ)
请问这个文件是如何派生出的?为什么会出错呢
na_he 2008-07-28
  • 打赏
  • 举报
回复
.cpp也拷贝过来了吗,应该不会有问题的。
zsww111 2008-07-28
  • 打赏
  • 举报
回复
这个问题分不够我可以再加,很诚恳的请大家帮助我
zsww111 2008-07-25
  • 打赏
  • 举报
回复
我再顶
zsww111 2008-07-25
  • 打赏
  • 举报
回复
发表于:2008-07-25 16:38:411楼 得分:0
你的代码呢?
--------------------------------------我就是把这个类原封不动的考过来也是报这个错误,而在例子程序里是没问题的
ouyh12345 2008-07-25
  • 打赏
  • 举报
回复
class CListeningSocket : public CSocket
DECLARE_DYNAMIC(CListeningSocket);

得继承于CObject
Chivalry 2008-07-25
  • 打赏
  • 举报
回复
精简代码,把包含问题的最小代码法上来
Chivalry 2008-07-25
  • 打赏
  • 举报
回复
你的代码呢?

18,356

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC 网络编程
c++c语言开发语言 技术论坛(原bbs)
社区管理员
  • 网络编程
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧