资源简介
用C++写的网络爬虫程序,结构严谨,适合入门者研究
代码片段和文件信息
// ChildFrm.cpp : implementation of the CChildframe class
//
#include “stdafx.h“
#include “Spider.h“
#include
#include “ThreadParams.h“
#include “ChildFrm.h“
#include “SpiderDoc.h“
#include “SpiderList.h“
#include “SpiderView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChildframe
IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
ON_MESSAGE(WM_USER_LISTOnView)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction
CChildframe::CChildframe()
{
// TODO: add member initialization code here
}
CChildframe::~CChildframe()
{
}
BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
| FWS_ADDTOtitle | WS_THICKframe | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_MAXIMIZE;
return CMDIChildWnd::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics
#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers
BOOL CChildframe::ReplaceView(CRuntimeClass * pViewClass)
{
CCreateContext context;
CView * pCurrentView;
//如果当前没有一个活动的框架返回假值
// if no active view for the frame return FALSE because this
// function retrieves the current document from the active view
if ((pCurrentView=GetActiveView())==NULL)
return FALSE;
// If we‘re already displaying this kind of view no need to go
// further. 如果我们已经显示了这种类型的视图,不用回到父亲;
if ((pCurrentView->IsKindOf(pViewClass))==TRUE)
return TRUE;
// Get pointer to CDocument object so that it can be used in the creation
// process of the new view
CDocument * pDoc= pCurrentView->GetDocument();
// set flag so that document will not be deleted when view is destroyed
BOOL bAutoDelete=pDoc->m_bAutoDelete;
pDoc->m_bAutoDelete=FALSE;
// Delete existing view
pCurrentView->DestroyWindow();
// restore flag
pDoc->m_bAutoDelete=bAutoDelete;
// Create new view and redraw
context.m_pNewViewClass=pViewClass;
context.m_pCurrentDoc=pDoc;
context.m_pNew
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4409 2008-10-06 06:55 spider\ChildFrm.cpp
文件 1499 1998-05-20 18:13 spider\ChildFrm.h
文件 930 1998-05-25 20:30 spider\COPYRIGHT.txt
文件 25019 2008-10-06 21:37 spider\Debug\ChildFrm.obj
文件 0 2008-10-06 02:55 spider\Debug\ChildFrm.sbr
文件 100034 2008-10-06 21:37 spider\Debug\MainFrm.obj
文件 0 2008-10-06 02:55 spider\Debug\MainFrm.sbr
文件 192555 2008-10-06 21:40 spider\Debug\Spider.exe
文件 31300 2008-10-06 21:37 spider\Debug\Spider.obj
文件 746496 2008-10-06 21:40 spider\Debug\Spider.pdb
文件 11900 2008-10-06 02:34 spider\Debug\Spider.res
文件 0 2008-10-06 02:55 spider\Debug\Spider.sbr
文件 18431 2008-10-06 21:37 spider\Debug\SpiderDoc.obj
文件 0 2008-10-06 02:55 spider\Debug\SpiderDoc.sbr
文件 25509 2008-10-06 21:37 spider\Debug\SpiderList.obj
文件 0 2008-10-06 02:55 spider\Debug\SpiderList.sbr
文件 40957 2008-10-06 02:55 spider\Debug\SpiderView.obj
文件 0 2008-10-06 02:55 spider\Debug\SpiderView.sbr
文件 57957 2008-10-06 02:55 spider\Debug\StdAfx.obj
文件 871510 2008-10-06 02:55 spider\Debug\StdAfx.sbr
文件 112524 2008-10-06 21:37 spider\Debug\Thread.obj
文件 0 2008-10-06 02:55 spider\Debug\Thread.sbr
文件 29333 2008-10-06 21:39 spider\Debug\UrlDlg.obj
文件 0 2008-10-06 02:55 spider\Debug\UrlDlg.sbr
文件 15593 2008-10-06 02:55 spider\Debug\utily.obj
文件 0 2008-10-06 02:55 spider\Debug\utily.sbr
文件 176128 2008-10-06 21:39 spider\Debug\vc60.pdb
文件 20812 1998-05-30 15:08 spider\MainFrm.cpp
文件 2637 1998-05-25 14:13 spider\MainFrm.h
文件 1442 2008-10-04 00:59 spider\read.txt
............此处省略40个文件信息
- 上一篇:MFC实现PopStar小游戏
- 下一篇:C++实现朴素贝叶斯分类器
相关资源
- C++实现朴素贝叶斯分类器
- 运动会成绩管理系统实验报告 C++编写
- UKF的C、C++代码实现
- VC++获取系统信息/获取OS/获取MAC/获取
- VC++五子棋程序源码VC6.0控制台下运行
- VC++编写USB接口通信程序
- vc++ tcp 客户端和服务器端
- 参考资料\\C++获取MP3文件信息.doc
- 简单的停车场收费 c++
- JPEG图片EXIF信息提取及缩略图显示VC
- shell.rar,一个用c++实现的具有基本完
- VS2010 C++配色方案 主题
- Qt-C++实现文件浏览器
- c++ MFC实现文件合成器功能,实现多种
- 图书管理系统C++65062
- c++ 记事本 源码
- c++头文件大全,很全哦,
- PCA和KPCA的Matlab和C++程序
- MFC中的多线程同步
- 山东科技大学C++数据库课程设计源代
- c++做的仪表盘非常逼真哦
- c++ 连接sql server 数据库代码
- 缓冲池的模拟(C++)
- c++版的连连看解释很详细
- 激光雷达数据读取、显示、分割、直
- 旅游管理系统 C++ SQL
- Exceptional C++(中文版).侯捷-侯老师的
- C++实现获取win7系统端口号IP状态和P
- C++编程规范_101条规则、准则与最佳实
- C++学校人员信息管理系统课程设计.
评论
共有 条评论