⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example.cpp

📁 BCGCBDotNetExample 修改后的通用模板
💻 CPP
字号:
//	The static example code includes self-test notes in comments
//	Note to improved noticeable syntax coloring

#include "stdafx.h"         //  To set or remove a bookmark at the currnet line
                            //  click on the Edit toolbar, Toggle Bookmark ('Ctrl'+'F2');
#include <windows.h>
#include <stdio.h>          //  To move the cursor between bookmarks click on the
#include <conio.h>          //  Edit toolbar, Next Bookmark and Previous Bookmark

#define DO_TRACE(bTrace, lpszText)  { if (bTrace) { printf("%s\n",lpszText); } }

class CMyClass              //  To find the text use find combo box on the Standard toolbar
{                           //  or click on the Edit toolbar, Find ('Ctrl'+'F')
public:
    CMyClass(): m_bTrace(FALSE)
    {
        memset(&m_lf,0,sizeof(LOGFONT));
    }
    ~CMyClass()
    {                       //  To set or remove breakpoint (bookmark) click
        OnDestroy();        //  on the Build toolbar, Insert/Remove Breakpoint ('F9')
    }
    int DoMain()            //  To remove all breakpoints click on the Build toolbar,
    {                       //  Remove All Breakpoints
        DO_TRACE(m_bTrace,"CMyClass::DoMain ()");
        return 0;
    }
    const char* GetAppName() const  { return "Example.exe"; }
    inline void EnableTrace(BOOL bTrace = TRUE)  { m_bTrace = bTrace; }

protected:                  //  To change indentation of the text select lines and
            BOOL m_bTrace;  //  click on the Edit toolbar, Increase Ident ('Tab')
            LOGFONT m_lf;   //  or Decrease Indent ('Shift'+'Tab') to increase or
                            //  decrease the left indent of the lines
            virtual void OnDestroy()
            {               //  To look definition of a symbol just set mouse focus on it
                DO_TRACE(m_bTrace, "CMyClass::OnDestroy ()");
            }               //  To find out the class members' names type
};                          //  "this->" to open class members' popup list

int main()
//	The entry point for the console application
{
    CMyClass* pMyClass = new CMyClass();    //  To find out the class/struct
                                            //  members' names simple strike '.'
    DO_TRACE(TRUE, pMyClass->GetAppName()); //  after typing its name or just
    int nRet = pMyClass->DoMain();          //  press 'Ctrl'+'Alt'+'T'
    
    delete pMyClass;                        //  To find out the CMyClass members'
    return nRet;                            //  names type "pMyClass->" to open
}                                           //  class members' popup list

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -