Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - application
Search - application - List
Shorthand是一个强大的脚本语言,是专门为基于Web的应用程序设计的。它的语法简单直观易于学习。它的引擎可在所有的 Linux 和Windows平台的流行Web服务器上运行。它支持 MySQL 和ODBC,以便用最普通的数据格式化。-Shorthand is a powerful scripting language that is specifically for Web-based application design. Its syntax is simple and intuitive and easy to learn. The engine in all the Linux and Windows platforms popular Web servers. It supports ODBC and MySQL to use the most common data format.
Date : 2008-10-13 Size : 481.38kb User : 斯蒂芬

DL : 0
BeanShell是一个小型的,免费的,可嵌入式的,具有面向对象脚本语言特性的Java代码解释器。它是用Java语言写的。它能执行标准的Java语句和表达式,还自带简单的脚本命令和语法。它把编程对象当成一个简单的方法,这很像Perl和JavaScript. 你可以在写Java测试或调试时使用BeanShell,也可以用它作为你的应用程序的脚本引挚。简而言之,BeanShell可以动态的解释JAVA语言。也就是说BeanShell在许多方面对于Java的用处就像Tcl/Tk对于C的用处一样:BeanShell是可嵌入式的---你可以在运行时从你的应用程序调用BeanShell去动态的执行Java代码或是为你的应用程序提供脚本扩展。相反,你也可以从BeanShell调用你的应用程序及其对象,它可以让JAVA对象和API动态运行。正因为BeanShell是用JAVA写的,所以它可以和你的应用程序运行在同一个JVM空间内,你也可以自由的传递实时对象的参照(References)到脚本代码中并且作为结果返回。-BeanShell is a small, free of charge, to be embedded with object-oriented scripting language features of Java code interpreter. It is written in the Java language. It implementation of the standards Java language and expression, also own simple script commands and syntax. Programming Object put it as a simple method, much like Perl and JavaScript. You can write Java testing or debugging use BeanShell can also use it as your application's scripting engine. In short, the dynamics of BeanShell can explain Java language. BeanShell is in many respects for the usefulness of Java as Tcl / Tk for the usefulness of the same C : BeanShell can be embedded -- you can run from your application to BeanShell called dynamic execution of Java code, or for your application for extension of the script. I
Date : 2008-10-13 Size : 1.36mb User : limu7475

利用词法分析原理,写的图形化计算器实例,使编译原理应用的一个小例子-use lexical analysis principle, to write graphic calculator example, turn the application of principles of a small example
Date : 2008-10-13 Size : 42.89kb User : coca

DL : 0
gc6.7 一个适用于C\\C++的内存垃圾回收器,可以像Java中那样随意的分配内存而不用释放,也不必担心内存泄漏了-gc6.7 an application to the C \\ C memory for the garbage collector. Java can be as arbitrary as the allocation of memory instead of the release, there is no need to worry about a memory leak
Date : 2008-10-13 Size : 756.5kb User : mastercn

The application wizard has created this SoccerDoctor application for you. This application not only demonstrates the basics of using the Microsoft Foundation Classes but is also a starting point for writing your application. -The application wizard has created this So ccerDoctor application for you. This applicat ion not only demonstrates the basics of using th e Microsoft Foundation Classes but is also a sta Lye point for writing your application.
Date : 2008-10-13 Size : 204.09kb User : 王揌

指纹识别可以提供具体的应用给我门详细的资料应用北京-fingerprint identification can provide specific application to my door detailed information Application Beijing
Date : 2008-10-13 Size : 536.57kb User : leida

DL : 0
这是用.net写的一个词法分析器,仅供参考。-This is the application. Net write a lexical analyzer for reference purposes only.
Date : 2008-10-13 Size : 85.72kb User : king

为你的MFC程序添加宏脚本语言。AppWizard has created this ScriptDemo application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application.-for your MFC adds Acer scripting language. AppWizard has created this ScriptDemo applica tion for you. This application not only demonst rates the basics of using the Microsoft Foundat ion classes but is also a starting point for writ ing your application.
Date : 2008-10-13 Size : 41.54kb User : zhouwei

java初学者的简单的小程序应用,可以作为书本中的例子使用,实现了基本控件的一些功能。-java beginners a simple application procedures for small, as examples of books to use, realize the basic functions of some controls.
Date : 2008-10-13 Size : 763.43kb User : merlin

词法分析器制作与应用 设计思想 (1)程序主体结构部分: 说明部分 %% 规则部分 %% 辅助程序部分 (2)主体结构的说明 在这里说明部分告诉我们使用的LETTER,DIGIT, IDENT(标识符,通常定义为字母开头的字母数字串)和STR(字符串常量,通常定义为双引号括起来的一串字符)是什么意思.这部分也可以包含一些初始化代码.例如用#include来使用标准的头文件和前向说明(forward ,references).这些代码应该再标记\"%{\"和\"%}\"之间 规则部分> 可以包括任何你想用来分析的代码 我们这里包括了忽略所有注释中字符的功能,传送ID名称和字符串常量内容到主调函数和main函数的功能. (3)实现原理 程序中先判断这个句语句中每个单元为关键字、常数、运算符、界符,对与不同的单词符号给出不同编码形式的编码,用以区分之。 PL/0语言的EBNF表示 <常量定义>::=<标识符>=<无符号整数> <标识符>::=<字母>={<字母>|<数字>} <加法运算符>::=+|- <乘法运算符>::=*|/ <关系运算符>::==|#|<|<=|>|>= <字母>::=a|b|…|X|Y|Z <数字>::=0|1|2|…|8|9-lexical analyzer production and application design (1) procedure main structural elements : narrative%%%% Rules of Procedure supporting part (2) the main structure of the narrative here to tell us so The LETTER, DIGIT, IDENT (identifier, usually defined as the beginning of the alphabet alphanumeric strings) and STR (string constants, usually defined as double quotes name of the string of characters) what it meant. This part also contains some initialization code. cases # include use as to the use of standard documents and the first to the (forward, references). these codes should labeled "% (" and ")%" between some of the rules
Date : 2008-10-13 Size : 4.73kb User : 黄启龙

JAVA在编译原理上的应用。-JAVA in translation principle application.
Date : 2008-10-13 Size : 143.91kb User : 王红

词法分析程序。用于词法分析器的制作与应用。-lexical analysis procedure. Lexical analyzer for the production and application.
Date : 2008-10-13 Size : 15.24kb User : wangxiuxiu

IDE开发环境,可以挂载SDCC The BASIC IDE is a new, RAD (Rapid Application Development) IDE (Integrated Development Environment) for the RapidQ programming language. The IDE currently has rich project options, a form designer (similar to Delphi s), and code editor. The BASIC IDE is being coded in Borland® Delphi® . We are currently using Delphi 6, but you should be able to use Delphi 3 or later (Delphi 7 included). Some of the BASIC IDEs features include: Form Designer with support for all of RapidQ s components Flexible Code Editor Project Management Written in OO (Object Oriented) Delphi. Some future items that we are working on are: Code Tip Code Completion CVS Integration Code Editor Macros Point-and-Click access to subroutines, functions, and variables
Date : 2008-10-13 Size : 218.66kb User : 天下

This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your 词法分析 application.
Date : 2008-10-13 Size : 53.69kb User : Saliher

DL : 0
lex&yacc应用环境和编译系统-lexyacc application environment and compiler system
Date : 2008-10-13 Size : 779.63kb User : 王金华

本课程设计采用C语言进行编译原理实现课题有限自动机的应用,其目的如下:(1) 理解有限自动机的作用;(2) 利用状态图和状态表表示有限自动机;(3) 以程序实现有限自动机的运行过程-courses designed using the C language compiler principles to achieve automatic machine issues limited the application of its purpose as follows : (a) limited understanding of the automatic machine; (2) using state map and the table, said state finite automata; (3) limited to procedures to achieve automatic machine Win OK process
Date : 2008-10-13 Size : 86.84kb User : 苏亮

在windows下应用的c语言编译器- Under windows application c language compiler
Date : 2026-01-18 Size : 4.25mb User : 李子木

DL : 0
PL/0语言可以看成PASCAL语言的子集,它的编译程序是一个编译解释执行系统。PL/0的目标程序为假想栈式计算机的汇编语言,与具体计算机无关。 文件说明: PL.htm---PL/0语言基本原理 pl0.h---定义 PL0.cpp---实现 testPl0.cpp---使用方法举例 testPas.txt---一个LP/0语言源程序-PL/0 language may regard as the PASCAL language the subset, its compiler is a translation explanation execution system. The PL/0 target program for the imaginary stack type computer assembly language, has nothing to do with with the concrete computer. Document explanation that, PL.htm---PL/0 language basic principle pl0.h--- defines PL0.cpp--- to realize the testPl0.cpp--- application method to give an example testPas.txt--- a LP/0 language source program
Date : 2026-01-18 Size : 583kb User : 许豫飞

C++ is widely used in the software industry. Some of its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ compiler software, including the GNU Project, Microsoft, Intel, Borland and others.
Date : 2026-01-18 Size : 1kb User : jk

ofdm系统的介绍,很详细的介绍了ofdm系统,ofdm已经在lte上系统中的到应用。-ofdm system introduced a very detailed system ofdm, ofdm lte system-on to the application.
Date : 2026-01-18 Size : 9kb User : liu
« 12 3 4 5 6 7 8 9 10 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.