资源简介
编译原理的课程设计:词法分析器,识别关键字、常数和符号
代码片段和文件信息
// Scanner.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Scanner.h“
#include “ScannerDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CScannerApp
BEGIN_MESSAGE_MAP(CScannerApp CWinApp)
//{{AFX_MSG_MAP(CScannerApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CScannerApp construction
CScannerApp::CScannerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CScannerApp object
CScannerApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CScannerApp initialization
BOOL CScannerApp::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
CScannerDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2005-10-29 09:04 Scanner
文件 3597 2005-06-13 10:03 Scanner\ReadMe.txt
文件 777 2005-06-13 10:03 Scanner\Resource.h
文件 1218 2005-09-12 16:25 Scanner\Scanner.clw
文件 2077 2005-06-13 10:04 Scanner\Scanner.cpp
文件 4309 2005-06-13 10:04 Scanner\Scanner.dsp
文件 520 2005-06-13 10:04 Scanner\Scanner.dsw
文件 1335 2005-06-13 10:04 Scanner\Scanner.h
文件 66560 2005-09-12 16:25 Scanner\Scanner.ncb
文件 1711 2005-09-12 16:25 Scanner\Scanner.plg
文件 7870 2005-06-13 10:04 Scanner\ScannerDlg.cpp
文件 1836 2005-06-13 10:04 Scanner\ScannerDlg.h
文件 209 2005-06-13 10:04 Scanner\StdAfx.cpp
文件 1054 2005-06-13 10:04 Scanner\StdAfx.h
文件 2612 2005-06-13 10:04 Scanner\Vocabulary.cpp
文件 588 2005-06-13 10:04 Scanner\Vocabulary.h
文件 35780 2005-09-12 16:24 Scanner\Scanner.aps
文件 5600 2005-09-12 16:24 Scanner\Scanner.rc
文件 49664 2005-09-12 16:25 Scanner\Scanner.opt
目录 0 2005-10-29 09:04 Scanner\res
文件 1078 2005-06-13 10:04 Scanner\res\Scanner.ico
文件 399 2005-06-13 10:04 Scanner\res\Scanner.rc2
----------- --------- ---------- ----- ----
188794 22
- 上一篇:基于8051单片机的红外接收程序
- 下一篇:傻瓜式的图片去水印下载
相关资源
- Delphi做的用于分析Pascal语言的词法分
- 编译原理语法分析器、词法分析器
- 词法分析器 -计算器版
- 词法语法分析器
- 词法分析器自动生成器 FLEX
- 词法分析器Lex(编译原理)
- 词法分析器
- 词法分析器有界面
- 利用FLEX设计一个small c的词法分析器文
- 词法分析器+语法分析器+中间代码生成
- SeuLex编译 词法分析器自动生成程序
- seulex 词法分析器生成工具+实验报告
- 词法分析器实验报告及源代码
- 编译原理,语法分析,词法分析器,
- SAMPLE语言的词法分析器
- 词法分析器语言源代码
- 编译原理实验词法分析器、中间代码
- 编译原理词法分析器实验从文件读入
- 《编译原理》实验 识别无符号数的词
- C_minus语言词法分析器
- 编译原理词法分析器语法分析器实验
- 使用flex编写一个词法分析器
- 实验二 实现一门语言的词法分析器
- SAMPLE语言词法分析器
- 词法分析器含代码及实验报告
- 编译原理实验报告 词法分析器实验报
- 编译原理--词法分析器+语法分析器 源
- 简单词法分析器,输出token和简单符号
- Sample语言词法分析器标准答案
- Python 实现的 C 词法分析器
评论
共有 条评论