這篇文章主要介紹了python實現(xiàn)類的靜態(tài)變量用法,實例分析了Python中基于數(shù)組實現(xiàn)靜態(tài)隊列的相關(guān)使用技巧,需要的朋友可以參考下
這里使用靜態(tài)變量目的是在類中實現(xiàn)一個靜態(tài)的隊列,這里用數(shù)組實現(xiàn),任何時候插入到隊列中的數(shù)據(jù)不會和類的實例有直接關(guān)系。
__author__ = 'Administrator'
class CaptchaImage:
def queue(self,arr=list()):
return arr
def InsertCode(self,code):
self.queue().append(code)
if __name__=='__main__':
c = CaptchaImage()
c.InsertCode(1)
b=CaptchaImage()
b.InsertCode(2)
print(b.queue())
print(c.queue())
代碼執(zhí)行輸出結(jié)果為:
[1, 2]
[1, 2]
希望本文所述對大家的Python程序設(shè)計有所幫助。
更多信息請查看IT技術(shù)專欄