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

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

test-driven

  • /** * 動態數組的模板類 * 1.支持字符索引 * 2.方便的添加刪除修改任意一項 * 最后更新 2004-8-9 yzh **1.優化了字符索引的運作方式

    /** * 動態數組的模板類 * 1.支持字符索引 * 2.方便的添加刪除修改任意一項 * 最后更新 2004-8-9 yzh **1.優化了字符索引的運作方式,使用數組存儲 **2.重寫了底層數據的存儲,將連續性的存儲方式改為了非連續, *** 從而很好有效地支持了“引用”,并且讓數據的刪除增加變的更為快速 * 用法如: * YCArray<int,int> test * test.Add("Number2",4) * test.Add("Number1",2) * printf("%d %d",test["Number1"],test["Number2"]) * 顯示: * 2 4 ******* ******* History: 2004-11-19 修改了析構函數,解決了索引沒有釋放的bug **/

    標簽: 2004 yzh 字符 索引

    上傳時間: 2015-04-09

    上傳用戶:我干你啊

  • 關于tts語音引擎的使用方法!很多軟件具有英文發音和朗讀功能

    關于tts語音引擎的使用方法!很多軟件具有英文發音和朗讀功能,它們都使用了MSTTS(Microsoft Text To Speech)技術。微軟遵照COM的標準,提供了一套Speech API來對MSTTS進行編程。要在程序中使用這套API,必須確保系統已經安裝了MSTTS和Spchapi軟件包。   Speech API可以作為類型庫引用到Delphi中,方法是:打開Project選單下的Import Type Litrary,點擊“Add”加入Windows\Speech目錄下的Vtxauto.tlb文件,在Delphi的Import目錄中就會生成VTxtAuto—TLB.pas文件,其中定義了VTxtAuto—TLB單元,把它加到Uses成員中來。設計如圖2所示的窗口,定義全局變量: var VoTxt:IVTxtAuto   然后在Form的OnCreate事件中加入:   VoTxt:=CoVTxtAuto_.Create   VoTxt.Register(′′,′Speech Test′) {注冊}   “Read”按鈕代碼為:   VoTxt.Speak(Memo1.Lines.Text,10) {朗讀}   “Stop”按鈕代碼為:   VoTxt.StopSpeaking {停止朗讀}   至此,應用程序已具有朗讀功能,10表示使用普通語氣。借住VoTxt的屬性和方法,我們還可以控制閱讀速度和語氣,實現暫停、跳句等功能,Speech API編程就這么簡單。

    標簽: tts 語音 引擎 多軟件

    上傳時間: 2014-01-21

    上傳用戶:13681659100

  • swing圖形界面java源代碼

    swing圖形界面java源代碼,提供比較齊全的test測試圖形界面程序

    標簽: swing java 圖形 源代碼

    上傳時間: 2014-12-06

    上傳用戶:yy541071797

  • 直接安裝并運行案例程序 運行“安裝程序Disk144Disk1”目錄中setup.exe文件

    直接安裝并運行案例程序 運行“安裝程序\Disk144\Disk1”目錄中setup.exe文件,按照系統提示進行安裝,可使本例程序在任何Windows系統上運行。 登錄時初始用戶名和密碼為(注意大小寫): admin:123456 系統管理員,具有所有權限 test:123456 測試用戶,無權限

    標簽: Disk Disk1 setup 144

    上傳時間: 2014-01-15

    上傳用戶:aix008

  • 直接安裝并運行案例程序 運行“安裝程序Disk144Disk1”目錄中setup.exe文件

    直接安裝并運行案例程序 運行“安裝程序\Disk144\Disk1”目錄中setup.exe文件,按照系統提示進行安裝,可使本例程序在任何Windows系統上運行。 登錄時初始用戶名和密碼為(注意大小寫): admin:123456 系統管理員,具有所有權限 test:123456 測試用戶,無權限

    標簽: Disk Disk1 setup 144

    上傳時間: 2014-01-16

    上傳用戶:chenbhdt

  • CBC下寫的串口編程

    CBC下寫的串口編程,API函數實例 I wish this site had been around when I was trying to figure out how to make serial communications work in Windows95. I, like many programmers, was hit with the double-whammy of having to learn Windows programming and Win95 serial comm programming at the same time. I found both tasks confusing at best. It was particularly frustrating because I had, over the years, written so much stuff (including lots of serial comm software) for the DOS environment and numerous embedded applications. Interrupt driven serial comm, DMA transfer serial comm, TSR serial comm, C, assembler, various processors... you name it, it had written it. Yet, everything I knew seemed upside-down in the message-driven-callback world of Windows.

    標簽: CBC 串口編程

    上傳時間: 2014-06-20

    上傳用戶:cccole0605

  • 英文名為:《Data.Protection.and.Information.Lifecycle.Management》內容為:數據維護計劃的統一框架

    英文名為:《Data.Protection.and.Information.Lifecycle.Management》內容為:數據維護計劃的統一框架,數據維護的策略標準,使用政策驅動(policy-driven)數據維護及數據生命周期(DLM)管理來提高安全、降低成本等。

    標簽: Information Protection Management Lifecycle

    上傳時間: 2014-01-08

    上傳用戶:banyou

  • This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrup

    This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrupt driven (with the exception of sending the data via USB to the host.) An interrupt is generated when the PS/2 start bit is received, at which time the firmware will begin its receive routine. In addition to this interrupt, every 168ms a timer overflow interrupts the main program and implements one state of the mouse state machine. This state machine handles sending bytes to and translating bytes received from the PS/2 mouse automatically. All of this is done in the background while the main program runs in the foreground. The only operation that the main program implements is sending mouse data to the PC via USB.

    標簽: firmware mouse translates translator

    上傳時間: 2015-04-26

    上傳用戶:cuiyashuo

  • 【功能】 1:多用戶統計系統

    【功能】 1:多用戶統計系統,防止刷新,速度快,適用廣泛 2:綜合統計,最近訪問,地區分析,地址分析,屏幕大小,來訪頁面,訪問次數,操作系統,當前在線,IP地址,瀏覽器,年報表,月報表,周報表,歷史報表,日報表等 3:可以精確的跟蹤統計每一位來訪者的IP與在線時間-同一IP在線每隔5分鐘才能增加一個計數(你也可以修改時間,在stat.jsp頁你把ExTime改為你想要的時間,即 int ExTime=5 )。 4:提供詳細IP數據包,讓你清楚的知道來訪者是來是何方。 最好的是它時時性,你可以監控道現在有誰在瀏覽你的網站,瀏覽你的那個欄目 【系統配置】 先將此目錄下的“feng”目錄拷貝到你的虛擬目錄下的:\\WEB-INF\classes\下。 本系統這里使用的ACCESS數據數據庫。 數據源名稱:count,用戶名:admin,密碼:admin (也可以改變jdbc.java 文件的代碼,然后編譯)。 數據庫為: count.mdb 編寫環境: win2000+j2sdk1.4.0_02+tomcat4.0 測試頁面: test.jsp(你可以看看統計的效果)

    標簽: 多用 統計系統

    上傳時間: 2014-01-27

    上傳用戶:star_in_rain

  • Software Testing, Second Edition provides practical insight into the world of software testing and q

    Software Testing, Second Edition provides practical insight into the world of software testing and quality assurance. Learn how to find problems in any computer program, how to plan an effective test approach and how to tell when software is ready for release. Updated from the previous edition in 2000 to include a chapter that specifically deals with testing software for security bugs, the processes and techniques used throughout the book are timeless. This book is an excellent investment if you want to better understand what your Software Test team does or you want to write better software.

    標簽: practical Software provides software

    上傳時間: 2015-04-30

    上傳用戶:bjgaofei

主站蜘蛛池模板: 麟游县| 永丰县| 广南县| 平陆县| 津市市| 革吉县| 武乡县| 小金县| 图木舒克市| 黄骅市| 龙川县| 密山市| 永靖县| 民权县| 华容县| 台南市| 竹北市| 通州市| 沙田区| 襄樊市| 普格县| 乌兰县| 忻州市| 阳泉市| 名山县| 乌苏市| 廊坊市| 阳泉市| 五大连池市| 高碑店市| 淮阳县| 通化市| 南漳县| 台中市| 大冶市| 广东省| 华坪县| 固安县| 潞城市| 呼伦贝尔市| 肇庆市|