亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

do

  • min_Pascal語(yǔ)言的語(yǔ)法

    min_Pascal語(yǔ)言的語(yǔ)法,其中<循環(huán)語(yǔ)句>改為 ::= do<語(yǔ)句> while<條件>。壓縮包中還包括5個(gè)測(cè)試用例。 另外,如要文檔,請(qǐng)給我郵件。

    標(biāo)簽: min_Pascal 語(yǔ)言

    上傳時(shí)間: 2015-06-03

    上傳用戶:qunquan

  • Simple SunPlus SP54 codec converter and a more playable mode MJPG. untar the archive go to the r

    Simple SunPlus SP54 codec converter and a more playable mode MJPG. untar the archive go to the relevant directory to compile: just do make to install: with root account cp sp54convert /usr/local/bin to use: sp54convert infile outfile Enjoy !! Michel Xhaard <mxhaard@users.sourceforge.net> Till Adam <till@hubbahubba.de> Windows port: Piotr Pawlow <pp@siedziba.pl>

    標(biāo)簽: converter the playable SunPlus

    上傳時(shí)間: 2013-12-30

    上傳用戶:1079836864

  • 數(shù)字電壓表 AD芯片: 采用8位串行A/D轉(zhuǎn)換器ADC0832。 ● 8位分辨率

    數(shù)字電壓表 AD芯片: 采用8位串行A/D轉(zhuǎn)換器ADC0832。 ● 8位分辨率,逐次逼近型,基準(zhǔn)電壓為 5V ● 5V單電源供電 ● 輸入模擬信號(hào)電壓范圍為 0~5V ● 有兩個(gè)可供選擇的模擬輸入通道 顯示: 使用三個(gè)數(shù)碼管。 顯示范圍: 0.00 - 5.10 (單位:V) 連接方式: AD_CLK → P1.0 AD_DAT → P1.1 AD_CS → P3.4 模擬輸入 → CH0 (AD_DAT = do + DI) ADC0832輸出最大轉(zhuǎn)換值=FFH (255) 設(shè)定最大測(cè)量值=5.1V 255X=5.1 X=0.02 即先乘2再除以100 (小數(shù)點(diǎn)放在第三位數(shù)碼管)

    標(biāo)簽: 0832 ADC 8位 數(shù)字電壓表

    上傳時(shí)間: 2015-06-18

    上傳用戶:fandeshun

  • 在本編譯程序中,源語(yǔ)言為PL/0語(yǔ)言,目標(biāo)語(yǔ)言為假想棧式計(jì)算機(jī)的匯編語(yǔ)言.PL/0語(yǔ)言是Pascal語(yǔ)言的一個(gè)子集

    在本編譯程序中,源語(yǔ)言為PL/0語(yǔ)言,目標(biāo)語(yǔ)言為假想棧式計(jì)算機(jī)的匯編語(yǔ)言.PL/0語(yǔ)言是Pascal語(yǔ)言的一個(gè)子集,PL/0的編譯程序包括了對(duì)PL/0語(yǔ)言源程序進(jìn)行分析處理、編譯生成類PCODE代碼,并在虛擬機(jī)上解釋運(yùn)行生成的類PCODE代碼的功能。   PL/0語(yǔ)言編譯程序采用以語(yǔ)法分析為核心、一遍掃描的編譯方法。詞法分析和代碼生成作為獨(dú)立的子程序供語(yǔ)法分析程序調(diào)用。語(yǔ)法分析的同時(shí),提供了出錯(cuò)報(bào)告功能。在源程序沒(méi)有錯(cuò)誤編譯通過(guò)的情況下,調(diào)用類PCODE解釋程序解釋執(zhí)行生成的類PCODE代碼。 該軟件為PL/0語(yǔ)言編譯程序,所實(shí)現(xiàn)的擴(kuò)充功能如下: 1.增加單詞:保留字 ELSE,F(xiàn)OR,TO, doWNTO 2.增加運(yùn)算 +=,-=,++,-- 3.不等號(hào)# 改為 <> 4.增加條件語(yǔ)句的ELSE子句 5.擴(kuò)充語(yǔ)句: ①FOR <變量>:=<表達(dá)式> TO <表達(dá)式> do <語(yǔ)句> ②FOR <變量>:=<表達(dá)式> doWNTO<表達(dá)式> do <語(yǔ)句> 其中,語(yǔ)句①的循環(huán)變量的步長(zhǎng)為1, 語(yǔ)句②的循環(huán)變量的步長(zhǎng)為-1。 概述 源文件: *.plo 目標(biāo)文件: *.COD 實(shí)現(xiàn)平臺(tái):C++ Builder6.0

    標(biāo)簽: Pascal 語(yǔ)言 PL 編譯

    上傳時(shí)間: 2015-06-22

    上傳用戶:hanli8870

  • Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP

    Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP connection pool. One could easily implement a IMAP connection pool, then take the existing code and implement a LDAP connection pool. The program grows, and now there is a need for a pool of threads. So just take the IMAP connection pool and convert that to a pool of threads (Copy, paste, find, replace????). Need to make some changes to the pool implementation? Not a very easy task, since the code has been duplicated in many places. Re-inventing source code is not an intelligent approach in an object oriented environment which encourages re-usability. It seems to make more sense to implement a pool that can contain any arbitrary type rather than duplicating code. How does one do that? The answer is to use type parameterization, more commonly referred to as templates.

    標(biāo)簽: connection pool applications program

    上傳時(shí)間: 2013-12-25

    上傳用戶:playboys0

  • Simple I2C controller -- 1) No multimaster -- 2) No slave mode -- 3) No fifo s -- -- notes:

    Simple I2C controller -- 1) No multimaster -- 2) No slave mode -- 3) No fifo s -- -- notes: -- Every command is acknowledged. do not set a new command before previous is acknowledged. -- dout is available 1 clock cycle later as cmd_ack

    標(biāo)簽: multimaster controller No Simple

    上傳時(shí)間: 2015-07-01

    上傳用戶:zhangliming420

  • This file contains a new and improved version of the Huffman coder, (June 29. 2001). The name is Huf

    This file contains a new and improved version of the Huffman coder, (June 29. 2001). The name is Huff06.m. There are also some additional files which are helpful when using Matlab for data compression: quantizer, different variants of run-length-encoding and end-of-block coding in Mat2Vec, and a program which do JPEG-like entropy coding. A complete compression example is shown in TestMat2Vec.m. This file is all you need for Huffman coding in MatLab.

    標(biāo)簽: contains improved Huffman version

    上傳時(shí)間: 2015-07-05

    上傳用戶:jeffery

  • 1. PL/0 語(yǔ)言介紹 ●PL/0 程序設(shè)計(jì)語(yǔ)言是一個(gè)較簡(jiǎn)單的語(yǔ)言

    1. PL/0 語(yǔ)言介紹 ●PL/0 程序設(shè)計(jì)語(yǔ)言是一個(gè)較簡(jiǎn)單的語(yǔ)言,它以賦值語(yǔ)句為基礎(chǔ),構(gòu)造概念有順序、條件和重復(fù)(循環(huán))三種。PL/0 有子程序概念,包括過(guò)程定義(可以嵌套)與調(diào)用且有局部變量說(shuō)明。PL/0語(yǔ)言編譯程序采用以語(yǔ)法分析為核心、一遍掃描的編譯方法。詞法分析和代碼生成作為獨(dú)立的子程序供語(yǔ)法分析程序調(diào)用。語(yǔ)法分析的同時(shí),提供了出錯(cuò)報(bào)告和出錯(cuò)恢復(fù)的功能。在源程序沒(méi)有錯(cuò)誤編譯通過(guò)的情況下,調(diào)用類PCODE解釋程序解釋執(zhí)行生成的類PCODE代碼。 ●保留字(關(guān)鍵字):所謂保留字是指在Pascal語(yǔ)言中具有特定的含義。標(biāo)準(zhǔn)Pascal語(yǔ)言中的保留字一共有35個(gè),Turbo Pascal語(yǔ)言一共有51個(gè)。下面是Pascal語(yǔ)言的保留字:AND,ARRAY,BEGIN,CASE,CONST,DIV,dodoWNTO,ELSE,END,F(xiàn)ILE,F(xiàn)OR,F(xiàn)UNTION,GOTO,IF,IN,LABEL,MOD,NIL,NOT,OF,OR,PACKED,PROCEDURE,PROGRAM,RECORD,REPEAT,SET,THEN,TO,TYPE,UNTIL,VAR,WHILE,WITH,EXPORTS,SHR,STRING,ASM,OBJECT,UNIT,CONSTRUCTOR,IMPLEMENTATION,DESTRUCTOR,USES,INHERITED,INLINE,INTERFACE,LIBRARY,XOR,SHL

    標(biāo)簽: PL 語(yǔ)言 程序設(shè)計(jì)語(yǔ)言

    上傳時(shí)間: 2015-07-17

    上傳用戶:zm7516678

  • THIS is really two books in one: a tutorial and a reference manual for JDBC, the application program

    THIS is really two books in one: a tutorial and a reference manual for JDBC, the application programming interface that makes it possible for programmers to access databases from Java. The goal is to be useful to a wide range of readers, from database novices to database experts. Therefore, we have arranged the book so that information needed only by experts is separated out from the basic material. We hope that driver developers as well as application programmers and MIS administrators will find what they need. Because different sections are aimed at different audiences, we expect that few people will read every page. We have sometimes duplicated explanations in an effort to make reading easier for those who do not read all sections. This book will be most helpful to those who have some knowledge of the Java programming language and SQL (Structured Query Language), but one doesn t need to be an expert in either to understand the basic concepts presented here.

    標(biāo)簽: application reference tutorial program

    上傳時(shí)間: 2015-08-04

    上傳用戶:zhengzg

  • THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF AN

    THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES do NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

    標(biāo)簽: PROVIDED INFORMATION THE MICROSOFT

    上傳時(shí)間: 2014-01-06

    上傳用戶:skhlm

主站蜘蛛池模板: 中阳县| 靖州| 新蔡县| 临武县| 太康县| 商洛市| 霍山县| 兰西县| 托克逊县| 东港市| 南开区| 微山县| 扎赉特旗| 田阳县| 同江市| 揭东县| 高州市| 扶余县| 浦北县| 托克逊县| 大城县| 雅江县| 玛纳斯县| 四子王旗| 扎兰屯市| 南靖县| 叶城县| 景泰县| 虎林市| 绥棱县| 平邑县| 阿拉尔市| 荥阳市| 广汉市| 罗江县| 定西市| 甘洛县| 白玉县| 万年县| 新巴尔虎左旗| 萝北县|