Learn how to: * Tokenize a null-terminated string * Create a search and replace function for strings * Implement subtraction for string objects * Use the vector, deque, and list sequence containers * Use the container adaptors stack, queue, and priority_queue * Use the map, multimap, set, and multiset associative containers * Reverse, rotate, and shuffle a sequence * Create a function object * Use binders, negators, and iterator adapters * Read and write files * Use stream iterators to handle file I/O * Use exceptions to handle I/O errors * Create custom inserters and extractors * Format date, time, and numeric data * Use facets and the localization library * Overload the [ ], ( ), and -> operators * Create an explicit constructor * And much, much more
標(biāo)簽: null-terminated Tokenize Create string
上傳時(shí)間: 2014-01-18
上傳用戶:yph853211
java面試筆試題大匯總 ~很全面 java面試筆試題大匯總 第一,談?wù)刦inal, finally, finalize的區(qū)別。 最常被問到。 第二,Anonymous Inner Class (匿名內(nèi)部類) 是否可以extends(繼承)其它類,是否可以implements(實(shí)現(xiàn))interface(接口)? 第三,Static Nested Class 和 Inner Class的不同,說得越多越好(面試題有的很籠統(tǒng))。 第四,&和&&的區(qū)別。 這個(gè)問得很少。 第五,HashMap和Hashtable的區(qū)別。 常問。 第六,Collection 和 Collections的區(qū)別。 你千萬別說一個(gè)是單數(shù)一個(gè)是復(fù)數(shù)。 第七,什么時(shí)候用assert。 API級(jí)的技術(shù)人員有可能會(huì)問這個(gè)。 第八,GC是什么? 為什么要有GC? 基礎(chǔ)。 第九,String s = new String("xyz") 創(chuàng)建了幾個(gè)String Object? 第十,Math.round(11.5)等於多少? Math.round(-11.5)等於多少? 第十一,short s1 = 1 s1 = s1 + 1 有什么錯(cuò)? short s1 = 1 s1 += 1 有什么錯(cuò)? 面試題都是很變態(tài)的,要做好受虐的準(zhǔn)備。 第十二,sleep() 和 wait() 有什么區(qū)
上傳時(shí)間: 2017-05-20
上傳用戶:壞壞的華仔
Introduction To CSS2樣式表簡(jiǎn)介 本手冊(cè)針對(duì)的是已有一定網(wǎng)頁設(shè)計(jì)制作經(jīng)驗(yàn)的讀者。其目的是提供最新最全的樣式表內(nèi)容的快速索引及注釋。所以對(duì)于樣式表的基礎(chǔ)知識(shí),在此僅簡(jiǎn)單介紹,恕不贅述。 本手冊(cè)的升級(jí)信息與版權(quán)聲明請(qǐng)參閱關(guān)于本書頁面。本手冊(cè)中專用詞匯請(qǐng)參閱中英文詞匯對(duì)照表。 限于篇幅,對(duì)于一些過于繁雜的相關(guān)內(nèi)容,如動(dòng)態(tài)樣式屬性(Dynamic Properties),濾鏡(Filters),行為(Behaviors)請(qǐng)參閱我的其它相關(guān)著作。 本書中涉及到的所有HTML對(duì)象(Object,Element),HTML特性(Attributes)和屬性(Properties)請(qǐng)參閱我的相關(guān)著作。
標(biāo)簽: Introduction CSS2 樣式表 To
上傳時(shí)間: 2014-01-20
上傳用戶:zhliu007
This library implements the KLT Tracking algorithm [2004] for Feature Tracking in Video useful in computer vision tasks like object recognition, image indexing, tracking and structure from motion. This implementation uses programmable Graphics Hardware to achieve considerable speedup in the running time of the GPU-based implementation.
標(biāo)簽: Tracking implements algorithm Feature
上傳時(shí)間: 2013-12-10
上傳用戶:trepb001
This library implements the KLT Tracking algorithm [2004] for Feature Tracking in Video useful in computer vision tasks like object recognition, image indexing, tracking and structure from motion. This implementation uses programmable Graphics Hardware to achieve considerable speedup in the running time of the GPU-based implementation.
標(biāo)簽: Tracking implements algorithm Feature
上傳時(shí)間: 2013-12-19
上傳用戶:WMC_geophy
Database Application : 查詢數(shù)據(jù)庫的最完美技巧 中文版 del6opr.chm: Delphi 6 的幫助文件 中文版 delphi6_function.chm Delphi 6 函數(shù)介紹 中文版 Essential_Pascal.chm 最完整的Object Pascal語言介紹 中文版 FastReportHelp.chm 擁有魔力的FastReport的幫助文件 中文版 IBlt0101B.Chm InterBase的經(jīng)典問答資料文件 中文版 MySQLBook.chm MySQL的最詳細(xì)幫助文件 中文版 ProgrammingWindows_tw.chm 地球上最有名、最受推崇、最多人使用并且從中受益的程式設(shè)計(jì)用書 當(dāng)然也是中文版
標(biāo)簽: Application Database Delphi delphi
上傳時(shí)間: 2017-07-04
上傳用戶:牧羊人8920
java 線程 靜態(tài)鎖,對(duì)象鎖, synchronized 是鎖方法還是鎖對(duì)象?還是鎖類?如何實(shí)現(xiàn)?? 部分代碼如下, public static Object lock=new Object() //靜態(tài)鎖,鎖類,不是鎖對(duì)象了!!所以兩個(gè)線程同時(shí) 運(yùn)行兩個(gè) TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(int i=0 i<20 i++){ try { Thread.sleep(30) } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace() } System.out.println(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }
上傳時(shí)間: 2017-07-15
上傳用戶:lijianyu172
Run following Matlab commands to make sure the installation worked correctly. Unlike query function, filterdb does not load all waveforms to memory but returns filtered database object. This is useful when the resulting set of the query is too big to fit in memory. Consequent calls to read function can be made to read content of this filtered database object.
標(biāo)簽: installation following correctly commands
上傳時(shí)間: 2013-12-30
上傳用戶:ainimao
Delphi的PDF開發(fā)控件,llPDFLib是一個(gè)100 的Object Pascallibrary,用于創(chuàng)建PDF文檔。用它創(chuàng)建PDF文檔不使用任何DLL和其他第三方軟件。llPDFLib包括TPDFDocument組件并帶。
上傳時(shí)間: 2014-01-22
上傳用戶:aeiouetla
Two scripts are included here. 1. convsys.m - combines the state space representation of two systems connected in series. [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2) This algorithm gives the convolution of two state space representations | A1 B1 | | A2 B2 | u ==> | | ==> | | ==> y | C1 D1 | | C2 D2 | The algorithm also accepts state space objects as inputs and gives out a state space object as output. 2. sysfeedbk.m [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2) Gives the closed loop state space representation for two systems connected with negative feedback in the following manner. | A1 B1 | u ==> | | ==> y + o | C1 D1 | | - | | | | A2 B2 | | |= | |= | | C2 D2 | The zip file also contains checkcompatibility.m , which checks the compatibility of matrix dimensions in the system and cleanss.m which can be used to clean a state space representation.
標(biāo)簽: representation included combines scripts
上傳時(shí)間: 2017-07-25
上傳用戶:semi1981
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1