Recite(一個輔助英語學(xué)習(xí)軟件源碼) 該程序的UI部分使用了WTL7.5。WTL7.5可以很容易的在微軟的官方網(wǎng)站找到,安裝也很簡單。 另外使用了BOOST庫中的部分內(nèi)容。包括filesystem用于操作文件名和目錄,可以在( http://lunatic.bokee.com/5899788.html )找到更詳細(xì)的介紹。serialization用于將對象序列化在磁盤文件中。datetime用于做日期的計算。還用到了STRING algo做簡單的字符串操作。因此你需要從( http://www.boost.org )下載boost的最新版本1.33.1,并在本地編譯它。 配置文件的讀寫使用了TinyXML,源碼已經(jīng)包含在源碼包中,無須另外下載。 整個程序的祼奔性相當(dāng)好,不依賴于其他任何的DLL或COM庫,就一個EXE文件。 我的編程和調(diào)試環(huán)境為WindowsXP,Visual Studio .net 2003。 該軟件的目的及作用請參見( http://lunatic.bokee.com/6153131.html ) 使用方法( http://lunatic.bokee.com/6153160.html ) 相關(guān)的資源( http://lunatic.bokee.com/6153181.html )
上傳時間: 2015-09-19
上傳用戶:fxf126@126.com
Two functions, num2bin and bin2num are provided. num2bin takes a double and converts it to a binary STRING representation. bin2num is its inverse operation. It can be used in a numerical analysis course when floating point arithmetic is discussed.
標(biāo)簽: num2bin functions and converts
上傳時間: 2014-01-07
上傳用戶:gdgzhym
1.left.aspx下部分實現(xiàn)了讀取RDF(RDF format feeds,是描述web資源的W3C XML格式)格式的feeds,可點擊第三條“RDF Test”進(jìn)行對比。 RDF與普通XML的主要區(qū)別是它的根節(jié)點下是<items>,而不是<channel>。 2.運行時,需要根據(jù)自己的機子改變RssReader.cs中的 STRING connStr = @"Data Source=6998D47256954C1\SQLEXPRESS Initial Catalog=rss Integrated Security=True"
標(biāo)簽: RDF format feeds left
上傳時間: 2014-01-17
上傳用戶:邶刖
基于終端的訂花系統(tǒng)_socket #include<stdio.h> #include<stdlib.h> #include<errno.h> #include<STRING.h> #include<sys/types.h> #include<netinet/in.h> #include<sys/socket.h> #include<sys/wait.h> #include<sys/ipc.h> #include<unistd.h> #include<sys/shm.h> #include<sys/stat.h> #define MYPORT 3490 // num of port #define BACKLOG 5 // largest num of accept #define MAXDATASIZE 1
標(biāo)簽: include gt lt socket
上傳時間: 2014-01-18
上傳用戶:003030
Text processing often involves matching text against a pattern. Although Java s character and assorted STRING classes offerlow- levelpattern- matching support, that support commonly leads to complex code. To help you write simplerpattern- matching code, Java provides regular expressions. After introducing you to terminology and thejava.util. regex package, Jeff Friesen explores many regular expression constructs supported by that package s Pattern class. Then he examines Pattern s methods and the additionaljava.util. regex classes. In conclusion, he presents a practical application of regular expressions.
標(biāo)簽: processing character Although involves
上傳時間: 2014-01-19
上傳用戶:愛死愛死
手機游戲坦克大戰(zhàn)import java.awt.* import javax.swing.* import java.awt.event.* import java.util.EventListener public class HsTank2 extends JFrame { HsTank2(STRING title) { this.setTitle(title) this.setSize(608 , 630) this.setLocation(300 , 100) this.setBackground(Color.WHITE)
標(biāo)簽: import java awt EventL
上傳時間: 2015-10-17
上傳用戶:李彥東
第一章涵蓋了內(nèi)建的數(shù)據(jù)型別,語言預(yù)先定義好的運算符、標(biāo)準(zhǔn)程序庫中那個的vector和STRING類、條件語句和循環(huán)語句、輸入和輸出用的iostream庫。第二章解釋函數(shù)的設(shè)計和使用;第三章涵蓋所謂的Standard Template Library;第四章講述classes機制的設(shè)計和使用過程。第五章說明如何擴展classes;第六章的重頭戲是class templates 第七章講述如何使用c++提供的異常處理機制。
標(biāo)簽: 數(shù)據(jù)
上傳時間: 2014-02-20
上傳用戶:zyt
問題描述:編寫一個JAVA程序,用面向?qū)ο笤O(shè)計的方法編寫一個電話卡的類。包括卡號、密碼、余額、撥入號碼等 b)基本要求:類的屬性有卡號、密碼、余額、撥入號碼,電話卡的常用操作可以用連接電話方法、返回余額方法與通電話方法來實現(xiàn)。 c)方法功能描述: 構(gòu)造方法(PhoneCard(卡號,密碼,余額,撥入號碼))可以完成屬性值初始化賦值,并判斷余額,余額為負(fù)就退出系統(tǒng),請在構(gòu)造方法中將初始時的連接置為false即表示沒有連接。 卡號long cardNumber 密碼private int password,余額double balance,撥入號碼STRING connectNumber boolean connected(一個布爾類型變量表示電話卡連接狀態(tài),初始時默認(rèn)沒有連接,值為false,當(dāng)調(diào)用連接電話方法()后,在判斷卡號和密碼相匹配后值置為true) 連接電話方法(performConnection(卡號,密碼))可以完成檢查卡號和密碼,它是只有在卡號和密碼相匹配時才連接 返回余額方法(getBalance())得到電話卡的余額 通電話方法(performDial())是模擬通過過程中,余額會不斷減少,每調(diào)用此方法,電話卡的余額減少0。5元,打一次電話調(diào)用一次
上傳時間: 2014-01-20
上傳用戶:1109003457
These two classes show an extremely simple example of java.net socket programming. They implement the Unix daytime protocol, an extremely simple protocol that consists entirely of the server sending its current local time and date to the client as an ASCII STRING. The server, to keep it very simple, does not use multiple threads. This code requires JDK 1.1 or later, but can easily be adapted to JDK 1.0.
標(biāo)簽: programming extremely implement classes
上傳時間: 2015-11-16
上傳用戶:jennyzai
此程序用來分離一個字符串中的數(shù)字及字符,STRING.zip
上傳時間: 2015-12-02
上傳用戶:wab1981
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1