我之前做過一個大批量修改文件的程序,最初用的是一次性讀入的方式讀取文件,即ReadToEnd。結(jié)果就出現(xiàn)了你這種很慢的情況,后來改成了逐行讀入,即ReadLine,速度提升數(shù)十倍!
成都創(chuàng)新互聯(lián)主營恭城網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā),恭城h5微信小程序定制開發(fā)搭建,恭城網(wǎng)站營銷推廣歡迎恭城等地區(qū)企業(yè)咨詢
運用多線程技術(shù)把一個任務(wù)分配到幾個線程上讓它們同時處理,這樣會比單線程快很多,不過多線程技術(shù)不是一兩話能說清的,你可以查一下相關(guān)的資料.
例子1:
Dim?result?As?ParallelLoopResult?=?Parallel.[For](0,?10,?Function(i)?
Console.WriteLine("{0},?task:?{1}?,?thread:?{2}",?i,?Task.CurrentId,?Thread.CurrentThread.ManagedThreadId)
Thread.Sleep(10)
End?Function)
Console.WriteLine(result.IsCompleted)
例子2:
Parallel.For(Of?String)(0,?20,?
Function()?
Console.WriteLine("init?thread?{0},??task?{1}",?Thread.CurrentThread.ManagedThreadId,?Task.CurrentId)
Return?String.Format("t:?{0}",?Thread.CurrentThread.ManagedThreadId)
End?Function,?
Function(i,?pls,?str)?
Console.WriteLine("body??i?{0}??str1?{1}??thread?{2}??task?{3}",?i,?str,?Thread.CurrentThread.ManagedThreadId,?Task.CurrentId)
Return?String.Format("i?{0}",?i)
End?Function,?
Function(str1)?
Console.WriteLine("finally?{0}",?str1)
End?Function)
網(wǎng)站欄目:提升vb.net速度 vb怎么提高
網(wǎng)頁網(wǎng)址:http://jinyejixie.com/article6/dopheog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、響應(yīng)式網(wǎng)站、網(wǎng)站內(nèi)鏈、App開發(fā)、品牌網(wǎng)站設(shè)計、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)