《Visual+C%2B%2B+6.0+时尚编程百例》100个的源代码01


最经典的c++实例,100个经典实例,切实提高您的实战技能,让您的c++语言更上一层楼!
资源截图
代码片段和文件信息
// HelloWorld.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “HelloWorld.h“

#include “MainFrm.h“
#include “HelloWorldDoc.h“
#include “HelloWorldView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CHelloWorldApp

BEGIN_MESSAGE_MAP(CHelloWorldApp CWinApp)
//{{AFX_MSG_MAP(CHelloWorldApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// 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
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHelloWorldApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CHelloWorldApp object

CHelloWorldApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CHelloWorldApp initialization

BOOL CHelloWorldApp::InitInstance()
{
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

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CHelloWorldDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CHelloWorldView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowW

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-11-30 18:17  1
     目录           0  2010-11-30 18:16  1实例01
     目录           0  2010-11-30 18:16  1实例01Debug
     文件      118942  2010-11-13 15:38  1实例01DebugHelloWorld.exe
     文件      303220  2010-11-13 15:38  1实例01DebugHelloWorld.ilk
     文件       23994  2010-11-13 15:38  1实例01DebugHelloWorld.obj
     文件     5502668  2010-11-13 15:37  1实例01DebugHelloWorld.pch
     文件      328704  2010-11-13 15:38  1实例01DebugHelloWorld.pdb
     文件        7356  2010-11-13 15:37  1实例01DebugHelloWorld.res
     文件       15751  2010-11-13 15:38  1实例01DebugHelloWorldDoc.obj
     文件       22277  2010-11-13 15:38  1实例01DebugHelloWorldView.obj
     文件       20755  2010-11-13 15:38  1实例01DebugMainFrm.obj
     文件      106382  2010-11-13 15:37  1实例01DebugStdAfx.obj
     文件      205824  2010-11-22 13:36  1实例01Debugvc60.idb
     文件      364544  2010-11-13 15:38  1实例01Debugvc60.pdb
     文件       29792  2010-11-17 10:45  1实例01HelloWorld.aps
     文件        2015  1999-03-26 23:40  1实例01HelloWorld.clw
     文件        4281  1999-03-26 23:40  1实例01HelloWorld.cpp
     文件        4639  1999-03-26 23:40  1实例01HelloWorld.dsp
     文件         543  1999-03-26 23:40  1实例01HelloWorld.dsw
     文件        1400  1999-03-26 23:40  1实例01HelloWorld.h
     文件       74752  1999-03-26 23:45  1实例01HelloWorld.ncb
     文件       49664  2010-11-22 13:37  1实例01HelloWorld.opt
     文件        1820  1999-03-26 23:44  1实例01HelloWorld.plg
     文件       10609  1999-03-26 23:40  1实例01HelloWorld.rc
     文件        1822  1999-03-26 23:40  1实例01HelloWorldDoc.cpp
     文件        1519  1999-03-26 23:40  1实例01HelloWorldDoc.h
     文件        2859  1999-03-26 23:44  1实例01HelloWorldView.cpp
     文件        1955  1999-03-26 23:40  1实例01HelloWorldView.h
     文件        2511  1999-03-26 23:40  1实例01MainFrm.cpp
     文件        1581  1999-03-26 23:40  1实例01MainFrm.h
............此处省略1407个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)