资源简介
首先可以去除注释// /*.........*/
并以二元式形式将分析结果输出到每行的后面
MFC实现
代码片段和文件信息
// LexicalAnalysis.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “LexicalAnalysis.h“
#include “LexicalAnalysisDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLexicalAnalysisApp
BEGIN_MESSAGE_MAP(CLexicalAnalysisApp CWinApp)
//{{AFX_MSG_MAP(CLexicalAnalysisApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CLexicalAnalysisApp construction
CLexicalAnalysisApp::CLexicalAnalysisApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CLexicalAnalysisApp object
CLexicalAnalysisApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CLexicalAnalysisApp initialization
BOOL CLexicalAnalysisApp::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
CLexicalAnalysisDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1423 2013-03-25 16:39 LexicalAnalysis.h
文件 74752 2013-04-02 00:59 LexicalAnalysis.ncb
文件 49664 2013-04-02 00:59 LexicalAnalysis.opt
文件 1209 2013-04-02 00:58 LexicalAnalysis.plg
文件 5796 2013-04-01 14:55 LexicalAnalysis.rc
文件 12859 2013-04-02 00:58 LexicalAnalysisDlg.cpp
文件 2095 2013-04-01 14:06 LexicalAnalysisDlg.h
文件 3741 2013-03-25 16:39 ReadMe.txt
文件 922 2013-04-01 15:04 resource.h
文件 217 2013-03-25 16:39 StdAfx.cpp
文件 1054 2013-03-25 16:39 StdAfx.h
文件 127063 2013-04-02 00:58 Debug\LexicalAnalysis.exe
文件 570820 2013-04-02 00:58 Debug\LexicalAnalysis.ilk
文件 23913 2013-04-01 14:16 Debug\LexicalAnalysis.obj
文件 5505248 2013-03-25 16:45 Debug\LexicalAnalysis.pch
文件 508928 2013-04-02 00:58 Debug\LexicalAnalysis.pdb
文件 3692 2013-04-01 14:55 Debug\LexicalAnalysis.res
文件 2560 2013-03-31 20:53 Debug\LexicalAnalysis.suo
文件 101556 2013-04-02 00:58 Debug\LexicalAnalysisDlg.obj
文件 105699 2013-03-25 16:45 Debug\StdAfx.obj
文件 246784 2013-04-02 00:58 Debug\vc60.idb
文件 413696 2013-04-02 00:58 Debug\vc60.pdb
文件 766 2013-04-01 14:55 res\icon1.ico
文件 1078 2013-03-25 16:39 res\LexicalAnalysis.ico
文件 407 2013-03-25 16:39 res\LexicalAnalysis.rc2
文件 1418 2013-04-01 14:48 LexicalAnalysis.clw
文件 2189 2013-03-25 16:39 LexicalAnalysis.cpp
文件 4384 2013-04-01 15:00 LexicalAnalysis.dsp
文件 538 2013-03-25 16:39 LexicalAnalysis.dsw
目录 0 2013-04-02 00:58 Debug
............此处省略4个文件信息
- 上一篇:QT开发多文档框架
- 下一篇:C++ 多边形边缘填充算法
相关资源
- 自定义词法规则的词法分析器
- 简易词法分析器——基于C语言
- 编译原理课程设计----语法分析器(
- 编译原理课程实验报告词法分析器及
- LEX实现一个C语言子集的词法分析器
- 编译原理词法分析器实验报告含源代
- 编译原理词法分析器C++版源代码
- 编译原理 词法分析器
- 词法分析器(c语言实现)246881
- 编译原理——词法分析器设计与实现
- 编译原理课程设计+报告用高级语言
- c++词法分析器
- 编译原理词法分析器 输入源程序 能生
- C MINUS 词法分析器
- 编译原理_词法分析器_C语言版_简单易
- 编译原理实验——词法分析器C语言编
- WinForm程序C++词法分析器
- 编译原理词法分析器实验报告
- 编译原理实验-词法分析器
- 词法分析器源代码(c/c++)
- 简单的词法分析器
- 编译原理大作业完整的词法分析器
- C语言 词法分析器 C#实现
- 词法分析器源代码
- 词法分析器c++版
- 一个简单的lex词法分析器
- C语言编程的词法分析器,可具体定位
- 词法分析器源代码C++
- C语言词法分析器_源代码
- c++实现词法分析器
评论
共有 条评论