资源简介
实现了将算术表达式、for语句、while语句转换成四元式的c++程序。除实现以上功能外,还配有图形化界面,设计文档等内容。
代码片段和文件信息
// CompilerDesign.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “CompilerDesign.h“
#include “CompilerDesignDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCompilerDesignApp
BEGIN_MESSAGE_MAP(CCompilerDesignApp CWinApp)
//{{AFX_MSG_MAP(CCompilerDesignApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CCompilerDesignApp construction
CCompilerDesignApp::CCompilerDesignApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCompilerDesignApp object
CCompilerDesignApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCompilerDesignApp initialization
BOOL CCompilerDesignApp::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
CCompilerDesignDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3348 2014-07-14 18:46 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.clw
文件 2175 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.cpp
文件 4660 2014-07-10 11:29 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.dsp
文件 536 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.dsw
文件 1412 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.h
文件 91136 2014-07-16 17:27 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.ncb
文件 48640 2014-07-16 17:27 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.opt
文件 2124 2014-07-16 17:27 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.plg
文件 8959 2014-07-09 14:17 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesign.rc
文件 5753 2014-07-09 14:17 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesignDlg.cpp
文件 1600 2014-07-09 14:17 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\CompilerDesignDlg.h
文件 6285 2014-07-13 10:46 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg1.cpp
文件 1317 2014-07-13 10:46 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg1.h
文件 21786 2014-07-14 09:41 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg2.cpp
文件 1176 2014-07-06 12:42 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg2.h
文件 11805 2014-07-14 12:55 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg3.cpp
文件 1233 2014-07-07 15:19 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg3.h
文件 969 2014-07-05 18:35 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg4.cpp
文件 1201 2014-07-10 10:29 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\Dlg4.h
文件 0 2014-07-07 16:22 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\obj.txt
文件 3723 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\ReadMe.txt
文件 1078 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\res\CompilerDesign.ico
文件 406 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\res\CompilerDesign.rc2
文件 1149 2014-07-09 14:17 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\resource.h
文件 216 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\StdAfx.cpp
文件 1054 2014-07-05 18:32 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\StdAfx.h
文件 24 2014-07-06 12:46 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\test_for1.txt
文件 21 2014-07-13 18:05 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\test_for2error.txt
文件 24 2014-07-10 10:20 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\test_for3.txt
文件 21 2014-07-13 17:52 编译原理课程设计——算术表达式、for、while语句转换为四元式\编译原理源代码\test_math1.txt
............此处省略13个文件信息
- 上一篇:vigenere算法C语言实现
- 下一篇:C++程序设计杨长兴、刘卫国答案
相关资源
- 广工编译原理课程设计 PL0C++改进需用
- 0513《编译原理》答案 设计并实现TI
- 编译原理firstselectfollow实验源代码
- 编译原理实验判断文法是不是LL1文法
- 编译原理Pascal语言编译器用C实现
- 编译原理PL0实验报告
- 编译原理正则表达式转NFA转DFA DFA最小
- 编译原理虎书课后习题解答
- 东北大学课程设计—编译原理课程设
- 编译原理-简单编译器课程设计C语言源
- PL/0编译程序文本(C版本)
- 编译原理 压缩文法等价变换
- 编译原理 电梯程序
- 编译原理C++实现判断LL1文法
- 编译原理课程设计——目标代码生成
- 编译原理课程设计(PASCAL)
- 编译原理实验之四元式的生成源代码
- 北邮编译原理实验--词法分析
- 编译原理 PASCAL编译器
- 编译原理语法分析、词法分析源代码
- 编译原理之NULL集、first、follow集C语言
- 编译原理(龙书中英版)第二版 中文
- 编译原理-词语语法语义分析
- 编译原理LLLRSLR作业集锦
- 编译原理课设含词法语法设计以及实
- 编译原理 pl0编译器 c语言版
- 编译原理课程设计C语言子集
- 编译原理实验,包括词法分析、语法
- 文法分析 编译原理
- 编译原理课程设计 使用lex和yacc
评论
共有 条评论