资源简介

结对靠谱,本人经过验收的,适合初学者参考。

资源截图

代码片段和文件信息

// RBT.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “RBT.h“
#include “RBTDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CRBTApp

BEGIN_MESSAGE_MAP(CRBTApp CWinApp)
//{{AFX_MSG_MAP(CRBTApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CRBTApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CRBTApp object

CRBTApp theApp;


/////////////////////////////////////////////////////////////////////////////
// CRBTApp initialization

BOOL CRBTApp::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

CRBTDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        878  2013-07-25 16:09  红黑树\RBT\Debug\BscMake.command.1.tlog

     文件        794  2013-07-25 16:09  红黑树\RBT\Debug\bscmake.read.1.tlog

     文件        580  2013-07-25 16:09  红黑树\RBT\Debug\bscmake.write.1.tlog

     文件       5594  2013-07-25 16:09  红黑树\RBT\Debug\cl.command.1.tlog

     文件      51600  2013-07-25 16:09  红黑树\RBT\Debug\CL.read.1.tlog

     文件       2650  2013-07-25 16:09  红黑树\RBT\Debug\CL.write.1.tlog

     文件          2  2013-07-25 16:09  红黑树\RBT\Debug\link-cvtres.read.1.tlog

     文件          2  2013-07-25 16:09  红黑树\RBT\Debug\link-cvtres.write.1.tlog

     文件       2512  2013-07-25 16:09  红黑树\RBT\Debug\link.command.1.tlog

     文件       8084  2013-07-25 16:09  红黑树\RBT\Debug\link.read.1.tlog

     文件       1286  2013-07-25 16:09  红黑树\RBT\Debug\link.write.1.tlog

     文件       1028  2013-07-25 16:15  红黑树\RBT\Debug\mt.command.1.tlog

     文件        778  2013-07-25 16:15  红黑树\RBT\Debug\mt.read.1.tlog

     文件        282  2013-07-25 16:15  红黑树\RBT\Debug\mt.write.1.tlog

     文件    8547328  2013-07-25 14:47  红黑树\RBT\Debug\RBT.bsc

     文件       1590  2013-07-25 12:55  红黑树\RBT\Debug\RBT.Build.CppClean.log

     文件      80384  2013-07-25 16:09  红黑树\RBT\Debug\RBT.exe

     文件        667  2013-07-25 12:55  红黑树\RBT\Debug\RBT.exe.embed.manifest

     文件        732  2013-07-25 14:47  红黑树\RBT\Debug\RBT.exe.embed.manifest.res

     文件        381  2013-07-25 16:09  红黑树\RBT\Debug\RBT.exe.intermediate.manifest

     文件     991060  2013-07-25 16:09  红黑树\RBT\Debug\RBT.ilk

     文件         47  2013-07-25 16:15  红黑树\RBT\Debug\RBT.lastbuildstate

     文件       1200  2013-07-25 16:15  红黑树\RBT\Debug\RBT.log

     文件      24133  2013-07-25 16:09  红黑树\RBT\Debug\RBT.obj

     文件    3623936  2013-07-25 16:09  红黑树\RBT\Debug\RBT.pdb

     文件       2428  2013-07-25 14:47  红黑树\RBT\Debug\RBT.res

     文件          0  2013-07-25 16:09  红黑树\RBT\Debug\RBT.sbr

     文件      39835  2013-07-25 16:09  红黑树\RBT\Debug\RBTDlg.obj

     文件          0  2013-07-25 16:09  红黑树\RBT\Debug\RBTDlg.sbr

     文件      25004  2013-07-25 16:00  红黑树\RBT\Debug\RBTREE.obj

............此处省略45个文件信息

评论

共有 条评论