python中是不支持静态变量的,所以可以通过以下的方法来实现静态变量的功能:

代码:

class CTest(object):
      '''python静态变量实现方法'''

      __init=None      def __new__(cls,value):

            if cls.__init is None:

                  cls.__init=object.__new__(cls)

                  cls.__init.value=value

            return cls.__initif __name__ == '__main__':
      flag1 = CTest(True)
      flag2 = CTest(False)
      print (flag1.value)
      print (flag2.value)

测试结果:

python 全局静态变量 python设置静态变量_python