python定義常量
阿新 • • 發佈:2017-09-15
assign __name__ color logs ict 實現 sel 指定 sta
常量是指一旦初始化後就不能修改的固定值。c++中使用const保留字指定常量,而python並沒有定義常量的保留字。但是python是一門功能強大的語言,可以自己定義一個常量類來實現常量的功能。
const.py
1 # -*- coding: utf-8 -*- 2 3 class _const: 4 class ConstError(TypeError) : pass 5 6 def __setattr__(self, key, value): 7 # self.__dict__ 8 if self.__dict__.has_key(key): 9 raise self.ConstError,"constant reassignment error!" 10 self.__dict__[key] = value 11 12 import sys 13 14 sys.modules[__name__] = _const()
調用
test.py,這樣就可以使用 了,這個值不能更改
import const const.package_max_size = 10000
python定義常量