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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

網(wǎng)頁顯示

  • P2P (peer to peer) file sharing program in C#. Supports Gnutella, Gnutella2, eDonkey, and OpenNap. w

    P2P (peer to peer) file sharing program in C#. Supports Gnutella, Gnutella2, eDonkey, and OpenNap. www.filescope.com. This is excellent for people wanting to learn socket programming, GUI effects via drawing, custom drawn controls (tabcontrol, menus, etc.), network transfers, and much more.

    標簽: Gnutella peer Supports OpenNap

    上傳時間: 2015-10-01

    上傳用戶:change0329

  • 本實驗以常見的1602B字符型LCD模塊為例

    本實驗以常見的1602B字符型LCD模塊為例,介紹該模塊的簡單使用。1602B可以顯示2行16個字符,有8位數據總線D0-D7,和RS、R/W、EN三個控制端口,工作電壓為5V,并且帶有字符對比度調節和背光。

    標簽: 1602B LCD 實驗 字符型

    上傳時間: 2013-12-21

    上傳用戶:com1com2

  • Embest S3C44B0X Evaluation Board RTC Test Example RTC Check(Y/N)? y Set Default Time at 2004

    Embest S3C44B0X Evaluation Board RTC Test Example RTC Check(Y/N)? y Set Default Time at 2004-12-31 FRI 23:59:59 Set Alarm Time at 2005-01-01 00:00:01 ... RTC Alarm Interrupt O.K. ... Current Time is 2005-01-01 SAT 00:00:01 RTC Working now. To set date(Y/N)? y Current date is (2005,01,01, SAT). input new date (yy-mm-dd w): 5-2-23 3 Current date is: 2005-02-23 WED RTC Working now. To set time(Y/N)? y Current time is (00:00:21). To set time(hh:mm:ss): 19:32:5 Current Time is 2005-02-23 WED 19:32:

    標簽: Evaluation RTC S3C44B0X Default

    上傳時間: 2014-01-03

    上傳用戶:baiom

  • THE SYNTAX OF A PROGRAMMING LANGUAGE tells you what code it is possible to write—what the machine w

    THE SYNTAX OF A PROGRAMMING LANGUAGE tells you what code it is possible to write—what the machine will understand. Style tells you what you ought to write— what the humans reading the code will understand. Code written with a consistent, simple style will be maintainable, robust, and contain fewer bugs. Code written with no regard to style will contain more bugs. It may simply be thrown away and rewritten rather than maintained.

    標簽: what PROGRAMMING LANGUAGE possible

    上傳時間: 2013-12-16

    上傳用戶:sxdtlqqjl

  • pam我們考慮常見的插值(抽取)運算和濾波器級聯的情形

    pam我們考慮常見的插值(抽取)運算和濾波器級聯的情形,在實際的插值(余 :)運算中,為了避免信號在經過插值(抽取)后出現混盛現象,保證能無失多 恢復信號,我們常常在插值運算之后(抽取運算之前)加上插值(抽取)濾公 時信號進行帶限,如圖2.10左邊所示。

    標簽: pam 插值 運算 濾波器

    上傳時間: 2015-10-11

    上傳用戶:1966640071

  • 熒光字,一個很好看的動畫 將彈出顏色選擇板

    熒光字,一個很好看的動畫 將彈出顏色選擇板,從中選擇自定義顏色按鈕 ,彈出顏色設置對話框,按照如圖所示的參數設置這個對話框

    標簽: 熒光 動畫

    上傳時間: 2015-10-15

    上傳用戶:er1219

  • E:Visual_C__MFC擴展編程實例 例18 動態地抓取應用程序的屏幕圖像并將其打印。 上一個實例打印的是文檔的報表

    E:\Visual_C__MFC擴展編程實例 例18 動態地抓取應用程序的屏幕圖像并將其打印。 上一個實例打印的是文檔的報表,而不是當前出現在屏幕上的內容。在本例中,將實現 屏幕抓取并打印其內容。M F C 為打印視提供了有限的支持, 但只要用M F C 在 C Vi e w : : O n D r a w ( )中所提供的設備環境,就可以繪制自己的視。在打印視的時候, M F C只需調 用具備打印機設備環境的O n D r a w ( )函數即可。但是,如果不繪制自己的視,例如,用一個或 者一個以上的控件窗口填充自己的視就不會打印任何東西。每個控件將使用自己的設備環境 將自己打印到屏幕,因此打印視的唯一途徑就是抓取屏幕(拷貝其內容到一個位圖對象)并將其 打印到打印機。由于該功能整個與位圖相關,因此將該功能封裝到了位圖類中。

    標簽: Visual_C MFC 打印 擴展

    上傳時間: 2015-10-18

    上傳用戶:asddsd

  • 每種程序設計語言都有描述程序語法結構的規則。例如

    每種程序設計語言都有描述程序語法結構的規則。例如,Pascal程序由程序塊(又叫分程序)構成,程序塊由語句組成,語句由表達式組成,表達式由記號組成等等。這些規則可以用上下文無關文法或BNF范式(Backus-Naur Form)描述。 編譯器常用的文法分析方法有自上而下和自下而上兩種。正如它們的名字所示,自上而下分析器建立分析樹是從根結點到葉結點,而自下而上分析器恰好反過來。它們的共同點是從左向右地掃描輸入,每次一個符號。 最有效的自上而下和自下而上的分析法都只能處理上下文無關文法的子類。這些子類足以描述程序設計語言的大多數語法結構,其中LL文法的分析器通常用手工實現,而LR文法的分析器通常利用自動工具構造。 本章致力于編譯器采用的典型語法分析方法。我們首先提出有關上下文無關文法的基本概念,然后介紹適合于手工實現的預測分析技術,最后給出自動工具用的LR分析算法。由于程序員準備的代碼經常會出現一些語法錯誤,因此我們還擴展所介紹的分析方法,使之能從常見的錯誤中恢復過來。 3.1 上下文無關文法 ..... 3.4 自下而上分析 3.6 二義文法的應用

    標簽: 程序設計語言 程序

    上傳時間: 2013-12-25

    上傳用戶:hanli8870

  • acm HDOJ 1051WoodenSticks Description: There is a pile of n wooden sticks. The length and weight o

    acm HDOJ 1051WoodenSticks Description: There is a pile of n wooden sticks. The length and weight of each stick are known in advance. The sticks are to be processed by a woodworking machine in one by one fashion. It needs some time, called setup time, for the machine to prepare processing a stick. The setup times are associated with cleaning operations and changing tools and shapes in the machine. The setup times of the woodworking machine are given as follows: (a) The setup time for the first wooden stick is 1 minute. (b) Right after processing a stick of length l and weight w , the machine will need no setup time for a stick of length l and weight w if l<=l and w<=w . Otherwise, it will need 1 minute for setup.

    標簽: WoodenSticks Description length wooden

    上傳時間: 2014-03-08

    上傳用戶:netwolf

  • This collection of routines allows the Atmel AT89C5x and AT89Cx051 micro- controllers to read and w

    This collection of routines allows the Atmel AT89C5x and AT89Cx051 micro- controllers to read and write the AT25xxx family of serial CMOS EEPROMS.

    標簽: controllers collection and routines

    上傳時間: 2015-10-19

    上傳用戶:gundan

主站蜘蛛池模板: 临沧市| 义马市| 尖扎县| 齐齐哈尔市| 吉安市| 新巴尔虎右旗| 民和| 泰州市| 珠海市| 海淀区| 中卫市| 安福县| 武冈市| 呼图壁县| 沾化县| 新民市| 宁强县| 河南省| 石屏县| 奎屯市| 普兰县| 铜陵市| 隆尧县| 大兴区| 环江| 侯马市| 陇南市| 乐平市| 天峻县| 榆树市| 白沙| 都兰县| 万州区| 锡林郭勒盟| 米林县| 龙川县| 金乡县| 洛南县| 龙井市| 天祝| 通河县|