• 大小: 11.77MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-29
  • 语言: C/C++
  • 标签: c++  

资源简介

最经典的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\实例01\Debug\
     文件      118942  2010-11-13 15:38  1\实例01\Debug\HelloWorld.exe
     文件      303220  2010-11-13 15:38  1\实例01\Debug\HelloWorld.ilk
     文件       23994  2010-11-13 15:38  1\实例01\Debug\HelloWorld.obj
     文件     5502668  2010-11-13 15:37  1\实例01\Debug\HelloWorld.pch
     文件      328704  2010-11-13 15:38  1\实例01\Debug\HelloWorld.pdb
     文件        7356  2010-11-13 15:37  1\实例01\Debug\HelloWorld.res
     文件       15751  2010-11-13 15:38  1\实例01\Debug\HelloWorldDoc.obj
     文件       22277  2010-11-13 15:38  1\实例01\Debug\HelloWorldView.obj
     文件       20755  2010-11-13 15:38  1\实例01\Debug\MainFrm.obj
     文件      106382  2010-11-13 15:37  1\实例01\Debug\StdAfx.obj
     文件      205824  2010-11-22 13:36  1\实例01\Debug\vc60.idb
     文件      364544  2010-11-13 15:38  1\实例01\Debug\vc60.pdb
     文件       29792  2010-11-17 10:45  1\实例01\HelloWorld.aps
     文件        2015  1999-03-26 23:40  1\实例01\HelloWorld.clw
     文件        4281  1999-03-26 23:40  1\实例01\HelloWorld.cpp
     文件        4639  1999-03-26 23:40  1\实例01\HelloWorld.dsp
     文件         543  1999-03-26 23:40  1\实例01\HelloWorld.dsw
     文件        1400  1999-03-26 23:40  1\实例01\HelloWorld.h
     文件       74752  1999-03-26 23:45  1\实例01\HelloWorld.ncb
     文件       49664  2010-11-22 13:37  1\实例01\HelloWorld.opt
     文件        1820  1999-03-26 23:44  1\实例01\HelloWorld.plg
     文件       10609  1999-03-26 23:40  1\实例01\HelloWorld.rc
     文件        1822  1999-03-26 23:40  1\实例01\HelloWorldDoc.cpp
     文件        1519  1999-03-26 23:40  1\实例01\HelloWorldDoc.h
     文件        2859  1999-03-26 23:44  1\实例01\HelloWorldView.cpp
     文件        1955  1999-03-26 23:40  1\实例01\HelloWorldView.h
     文件        2511  1999-03-26 23:40  1\实例01\MainFrm.cpp
     文件        1581  1999-03-26 23:40  1\实例01\MainFrm.h
............此处省略1407个文件信息

评论

共有 条评论