联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 编译器/解释器(135) 
按平台查找All C#(135) 

[编译器/解释器] GyroPrompt

GyroPrompt是一个简单的脚本解释器,用作自己的语言。GyroPrompt是一项正在进行的工作,旨在简化更高的...,
GyroPrompt is a simple script interpreter, serving as its own language. GyroPrompt is a work in progress that intends to simplify higher level tasks, and enable users to make powerful and stable console applications. (2023-09-06, C#, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1694017293780921.html

[编译器/解释器] CourseDesignOfPrincipleOfCompiler

编译原理课程设计,基于单分支控制语句文法的编译器实现,进行词法分析,语法分析,语义分析,并翻译成汇编代码。 附带说明文档。源代码有完整注释。
The course design of compilation principle is based on the compiler implementation of single branch control sentence grammar, which carries out lexical analysis, grammatical analysis, semantic analysis and translates into assembly code. Accompanying documentation. The source code has a complete comment. (2020-03-25, C#, 636KB, 下载0次)

http://www.pudn.com/Download/item/id/1585125097711215.html

[编译器/解释器] VttToSrt

把字幕文件vtt转成srt, 五毒俱全,请放心食用。
Subtitle file VTT into SRT, five drugs, please rest assured to eat. (2019-06-21, C#, 219KB, 下载4次)

http://www.pudn.com/Download/item/id/1561113091611982.html

[编译器/解释器] ThreadUIDemo

C#跨线程调用控件的常用几种方法(程序Demo) (1)禁止编译器对跨线程访问做检查 (2)使用delegate 和invoke 来从其他线程中调用控件 (3)使用delegate 和BeginInvoke 来从其他线程中控制控件 (4)使用BackgroundWorker 组件
Several commonly used methods (procedures Demo) C# cross-thread call control (1) prohibits the compiler to do cross-thread access checks (2) to call the delegate and invoke controls other threads (3) delegate and BeginInvoke to control controls other threads (4) Use the BackgroundWorker component (2015-12-19, C#, 58KB, 下载5次)

http://www.pudn.com/Download/item/id/1450497175467480.html

[编译器/解释器] C-language-lexical-analyzer

使用C#编写的一个简易的C语言词法分析器,对汇编语言的一个活学活用的例子,供大家参考学习。
英语中文德语检测语言 中文(简体)英语日语 翻译文字或网页 使用C#编写的一个简易的C语言词法分析器,对汇编语言的一个活学活用的例子,供大家参考学习。 请键入文字或网站地址,或者上传文档。 取消 Shǐyòng C#biānxiě de yīgè jiǎnyì de C yǔyán cífǎ fēnxī qì, duì huìbiān yǔyán de yīgè huó xué huóyòng de lìzi, gōng dàjiā cānkǎo xuéxí.Use C# to write a simple C language lexical analyzer, an example of the assembly language of a live learning, for your reference study. (2014-10-14, C#, 113KB, 下载10次)

http://www.pudn.com/Download/item/id/2636259.html

[编译器/解释器] stack-heap

堆和栈的区别 一、预备知识—程序的内存分配 一个由C/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其 操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回 收 。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。 3、全局区(静态区)(static)—,全局变量和静态变量的存储是放在一块的,初始化的 全局变量和静态变量在一块区域, 未初始化的全局变量和未初始化的静态变量在相邻的另 一块区域。 - 程序结束后由系统释放。 4、文字常量区 —常量字符串就是放在这里的。 程序结束后由系统释放 5、程序代码区—存放函数体的二进制代码。
Difference between heap and stack A knowledge, preparation- program memory allocation A C/C++ compiler program memory is divided into the following parts 1, the stack area (stack)- released by the compiler automatically assigned, storage function of parameter values, the value of the local variable, etc. its Mode of operation is similar to the stack in data structure. 2, heap area (heap)- generally assigned by the programmer to release, if the programmer does not release, at the end of the program may be back by the OS Closed. Pay attention to it and the heap data structure is different, distribution is similar to the linked list, ha ha. 3, global (static) (static)-, global and static variables stored is placed on a piece of, initialization Global and static variables in an area, an uninitialized global variables and static variables uninitialized in neighbouring the other An area.- application by the system after the release. 4, literal constant area- constant string is here (2013-05-30, C#, 8KB, 下载3次)

http://www.pudn.com/Download/item/id/2263778.html

[编译器/解释器] CMMInterpreter

cmm解释器完整代码,包含词法分析模块,语法语义分析模块,中间代码生成模块,解释执行中间重新代码模块 ,中间代码采用四元式 界面简单,方便用户重新设计界面,只需要修改对应控件绑定事件
cmm interpreter complete code, including lexical analysis module, the syntax semantic analysis module, intermediate code generation module to explain the implementation of the intermediate re-code module intermediate code 4 yuan style, the interface is simple and user-friendly re-design of the interface, and only need to modify the corresponding controls tied given event (2013-01-16, C#, 169KB, 下载16次)

http://www.pudn.com/Download/item/id/2118944.html

[编译器/解释器] SharpEdit

简单的C#编辑器源码 每次做一些简单的C#代码测试都要打开Visual Studio,太麻烦了, 于是在网上的一些技术的基础之上,制作了一个简单的C#开发工具, 没有建立工程的繁琐步骤,打开就可以写代码,在命令行输入“csc”就 可以编译,一切就这么简单. 注意: 开发环境为Visual Studio 2010
Simple C# editor (2012-12-21, C#, 1769KB, 下载8次)

http://www.pudn.com/Download/item/id/2091606.html

[编译器/解释器] XDesigner.Writer.Test

XDesigner.Writer文本编辑器组件是一个完全用C#开发的、运行在微软.NET框架 下的软件组件,它没有使用MS Word、RicthEditBox等其他任何文本编辑器组件,完全 靠自己实现了富格式文本编辑功能。可以非常完美的集成到.NET应用系统中,可以用 于WinForm.NET、ASP.NET、命令行程序或者后台服务程序的开发中。
XDesigner.Writer text editor component is a completely developed in C#, software components running on the Microsoft. NET Framework, it does not use MS Word, RicthEditBox any other text editor component, relies entirely on its own to achieve a rich format text editing features. Can be perfectly integrated into the NET applications can be used WinForm.NET, ASP.NET, command line programs or background services program development. (2012-07-27, C#, 7238KB, 下载18次)

http://www.pudn.com/Download/item/id/1950235.html

[编译器/解释器] Recursive-descent-analysis

该程序主要实现递归下降分析器的功能,对输入的字符串或者对从文件中获取的字符串进行分析,判断是否合法,并对表达式进行计算
The program is a recursive descent parser, the input string or string from a file, to determine whether legitimate, and to calculate the expression (2012-06-07, C#, 7KB, 下载5次)

http://www.pudn.com/Download/item/id/1905338.html

[编译器/解释器] cifafenxiqi

实现一个词法分析器,词法分析程序的主要任务是从左到右扫描每行源程序,拼成单词,换成统一的内部表示 (token)输出,送给语法分析器。具体包括: –组织源程序的输入; –按规则拼单词,并转换成二元形式; –滤掉空白符,跳过注释、换行符及一些无用的符号(如字符常数的引号) (实验一已完成); –进行行列计数,用于指出出错的行列号,并复制出错部分; –列表打印源程序; –发现并定位词法错误; –生成符号表。token 文件和符号表用作语法分析的输入部分。
Implement a lexical analyzer, lexical analysis program' s main task is scanned from left to right each line source, makes up words, and replaced with a unified internal representation (token) output, given parser. These include:- Organization of the input source - word fight by the rules, and converted into binary form - filter out the blank character, skip notes, line breaks and some useless symbols (such as character constants quotation marks) (experimental 1 has been completed) - to the ranks of count, the ranks for that error number, and copy the wrong part of it - list of print source - find and locate lexical errors - generate symbol table. token file and symbol table as part of parsing the input. (2009-11-25, C#, 28KB, 下载29次)

http://www.pudn.com/Download/item/id/982138.html

[编译器/解释器] Lexeme

一个自己制作的词法分析器,界面做的还算美观,功能基本可以实现,可以分析PL0语法,可能还存在一些没有测试出来的BUG,有兴趣的朋友可以一起交流学习,QQ84544838
A lexical analyzer to produce their own interface to do the still beautiful, the basic functions can be achieved, can be analyzed PL0 grammar, there are still some may not test out the BUG, have interested friends can communicate with study, QQ84544838 (2009-02-13, C#, 58KB, 下载16次)

http://www.pudn.com/Download/item/id/643355.html

[编译器/解释器] SyntaxAnalyzer

用C#做的《编译原理》的PROJECT--语法分析器(算符优先法) 文法,句子均支持从TXT文件输入或者手工键入,分析结果可保存为RTF文件
With C# To do the (2007-08-03, C#, 197KB, 下载86次)

http://www.pudn.com/Download/item/id/315296.html

[编译器/解释器] C_mycompiler

对c源程序的词法分析器。 主要由文本输入框(RichTextbox)、菜单、各个控制栏和对话控件组成。其中RichTextbox是文字的载体以及显示工具,菜单和工具栏用以使用程序提供的文件操作、编辑等的功能。结果另存为文件。
c source of the lexical analyzer. Mainly by the text input box (RichTextBox), the menu's control column and dialog components. RichTextBox language which is the carrier and demonstrate tools, menu and toolbars procedures for the use of the documentation provided by the operators, editors and other functions. Save the results of the document. (2006-12-28, C#, 119KB, 下载50次)

http://www.pudn.com/Download/item/id/237633.html

[编译器/解释器] scanner111111111

一个用C#写的词法分析程序 扫描器的工作任务如下: (1) 识别出源程序中的各个基本语法单位 (也称为单词或语法符号); (2) 删除无用的空白字符、回车字符以及其它与输入介质相关的非实质性字符; (3) 删除注释; (4) 进行词法检查,报告所发现的错误。
a written using C# lexical analysis procedure of the scanners work tasks are as follows : (1) to identify the source of all the basic grammatical unit (also known as the words or grammatical symbol); (2) delete unwanted blank characters, carriage return characters, and other media related to the importation of non-substantive character; (3) Delete Note; (4) lexical inspection, the report found errors. (2006-11-17, C#, 7KB, 下载21次)

http://www.pudn.com/Download/item/id/226958.html
总计:135