今天就跟大家聊聊有關(guān)Python中next函數(shù)如何使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供鎮(zhèn)巴網(wǎng)站建設(shè)、鎮(zhèn)巴做網(wǎng)站、鎮(zhèn)巴網(wǎng)站設(shè)計(jì)、鎮(zhèn)巴網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、鎮(zhèn)巴企業(yè)網(wǎng)站模板建站服務(wù),10年鎮(zhèn)巴做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
下面給出一個(gè)用iterator的實(shí)現(xiàn),一個(gè)CharBufReader類,封裝了buf,對(duì)外提供一次讀取一個(gè)byte的接口(內(nèi)部實(shí)現(xiàn)從buf讀取,buf讀完再fill buf)。這樣代碼好復(fù)用。
因?yàn)樘峁㏄ython next函數(shù),所以可以用iterator訪問(wèn)。但是效率上很慢,和以前不優(yōu)化,用file.read(1)差不多90s左右的時(shí)間??梢钥闯鼍褪侵饕且?yàn)楹瘮?shù)調(diào)用造成了原來(lái)程序速度慢。而不是因?yàn)椴挥米约簩懙木彌_讀文件時(shí)間長(zhǎng)。
class CharBufReader(object): def __init__(self, mfile, bufSize = 1000): self.mfile = mfile #self.bufSize = 64 * 1024 #64k buf size self.capacity = bufSize self.buf = '' #buf of char self.cur = len(self.buf) self.size = len(self.buf) def __iter__(self): return self def next(self): if self.cur == self.size: #if self.cur == len(self.buf): #if self.cur == self.buf.__len__(): selfself.buf = self.mfile.read(self.capacity) self.size = len(self.buf) if self.size == 0: raise StopIteration self.cur = 0 self.cur += 1 return self.buf[self.cur - 1] class Compressor(): def caculateFrequence(self): """The first time of reading the input file and caculate each character frequence store in self.dict """ self.infile.seek(0) reader = compressor.CharBufReader(self.infile) for c in reader: if c in self.dict: self.dict[c] += 1 else: self.dict[c] = 0
看完上述內(nèi)容,你們對(duì)Python中next函數(shù)如何使用有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。