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

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

do-while

  • 這是sun公司的程序員考試書籍(英文版的pdf) 還有模擬考試安裝盤

    這是sun公司的程序員考試書籍(英文版的pdf) 還有模擬考試安裝盤,和視頻!我將稍后發布! READ THIS AGREEMENT CAREFULLY. IF YOU AGREE TO ALL THE TERMS AND CONDITIONS SET FORTH BELOW AND ARE WILLING TO BE LEGALLY BOUND BY THEM, PRESS THE I AGREE BUTTON TO CONTINUE WITH THE SETUP. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, PRESS THE I DON T AGREE BUTTON TO ABORT THE INSTALLATION.

    標簽: sun 程序員 書籍

    上傳時間: 2015-05-25

    上傳用戶:ccclll

  • MFC Black Book Introduction: Are you an MFC programmer? Good. There are two types of MFC programme

    MFC Black Book Introduction: Are you an MFC programmer? Good. There are two types of MFC programmers. What kind are you? The first kind are the good programmers who write programs that conform to the way MFC wants you to do things. The second bunch are wild-eyed anarchists who insist on getting things done their way. Me, I’m in the second group. If you are in the same boat (or would like to be) this book is for you. This book won’t teach you MFC—not in the traditional sense. You should pick it up with a good understanding of basic MFC programming and a desire to do things differently. This isn’t a Scribble tutorial (although I will review some fundamentals in the first chapter). You will learn how to wring every drop from your MFC programs. You’ll discover how to use, abuse, and abandon the document/view architecture. If you’ve ever wanted custom archives, you’ll find that, too.

    標簽: MFC Introduction programmer programme

    上傳時間: 2015-05-30

    上傳用戶:youke111

  • Expert Choice represents a significant contribution to the decision making process 工t assists a deci

    Expert Choice represents a significant contribution to the decision making process 工t assists a decision maker in solving complex problems involving many criteria and several courses of action . An Expert Choice solution to a problem reflects the expertise of the decision maker , not the computer . Behavioral scientists have spent many years studying the human mind and how it makes decisions . They have found that humans are influenced by their previous experiences and this causes them to have biases . Basic instincts , preferences and environmental factors also play key roles in how we analyze data and make decisions . There 15 way to remove these factors from human decision making , nor would we necessarily want to , but as the problems of our world become more and more complex , it 15 necessary for us to employ a framework to help make more logical and less biased decisions while still taking our feelings and intuition into consideration .

    標簽: contribution significant represents decision

    上傳時間: 2015-06-02

    上傳用戶:gmh1314

  • 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>

    標簽: converter the playable SunPlus

    上傳時間: 2013-12-30

    上傳用戶:1079836864

  • Single-layer neural networks can be trained using various learning algorithms. The best-known algori

    Single-layer neural networks can be trained using various learning algorithms. The best-known algorithms are the Adaline, Perceptron and Backpropagation algorithms for supervised learning. The first two are specific to single-layer neural networks while the third can be generalized to multi-layer perceptrons.

    標簽: Single-layer algorithms best-known networks

    上傳時間: 2015-06-17

    上傳用戶:趙云興

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

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

    標簽: 0832 ADC 8位 數字電壓表

    上傳時間: 2015-06-18

    上傳用戶:fandeshun

  • 在本編譯程序中,源語言為PL/0語言,目標語言為假想棧式計算機的匯編語言.PL/0語言是Pascal語言的一個子集

    在本編譯程序中,源語言為PL/0語言,目標語言為假想棧式計算機的匯編語言.PL/0語言是Pascal語言的一個子集,PL/0的編譯程序包括了對PL/0語言源程序進行分析處理、編譯生成類PCODE代碼,并在虛擬機上解釋運行生成的類PCODE代碼的功能。   PL/0語言編譯程序采用以語法分析為核心、一遍掃描的編譯方法。詞法分析和代碼生成作為獨立的子程序供語法分析程序調用。語法分析的同時,提供了出錯報告功能。在源程序沒有錯誤編譯通過的情況下,調用類PCODE解釋程序解釋執行生成的類PCODE代碼。 該軟件為PL/0語言編譯程序,所實現的擴充功能如下: 1.增加單詞:保留字 ELSE,FOR,TO, DOWNTO 2.增加運算 +=,-=,++,-- 3.不等號# 改為 <> 4.增加條件語句的ELSE子句 5.擴充語句: ①FOR <變量>:=<表達式> TO <表達式> DO <語句> ②FOR <變量>:=<表達式> DOWNTO<表達式> DO <語句> 其中,語句①的循環變量的步長為1, 語句②的循環變量的步長為-1。 概述 源文件: *.plo 目標文件: *.COD 實現平臺:C++ Builder6.0

    標簽: Pascal 語言 PL 編譯

    上傳時間: 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.

    標簽: connection pool applications program

    上傳時間: 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

    標簽: multimaster controller No Simple

    上傳時間: 2015-07-01

    上傳用戶:zhangliming420

  • The J2000 codec was written in an effort to produce the cleanest and simplest implementation possibl

    The J2000 codec was written in an effort to produce the cleanest and simplest implementation possible of the JPEG-2000 standard. We have put a particular emphasis on good architecture design and code simplicity, while at the same time providing an implementation as complete and efficient as possible. The source code for the codec is freely available for anyone to study or even for use in commercial programs. We hope that our open development process and our focus on clean, straightforward code will help make the J2000 codec become a reference implementation of the JPEG-2000 standard

    標簽: implementation cleanest simplest produce

    上傳時間: 2015-07-03

    上傳用戶:dengzb84

主站蜘蛛池模板: 康马县| 鲁甸县| 陇西县| 准格尔旗| 昌平区| 包头市| 双柏县| 会东县| 黄梅县| 清丰县| 永和县| 天台县| 离岛区| 临城县| 巴林右旗| 临邑县| 吕梁市| 沙湾县| 临澧县| 万安县| 平湖市| 北川| 思茅市| 巍山| 兰溪市| 凌海市| 万盛区| 卫辉市| 凭祥市| 金秀| 淮滨县| 三穗县| 呼图壁县| 承德市| 和田县| 天全县| 岚皋县| 高台县| 中江县| 恩施市| 西青区|