import redis
class MyRedis(object):
xiaohei = ‘hahaha‘
def __init__(self, host, password=‘‘, port=6379):
self.__host = host
self.password = password
self.port = port
self.__coon_redis()
def __coon_redis(self):
self.coon = redis.Redis(host=self.__host, password=self.password, port=self.port)
def get(self, k):
print(self.__host)
return self.coon.get(k).decode()
@staticmethod # 静态方法
def other():
print(‘我是other!‘)
@classmethod # 类方法
def class_func(cls):
print(cls.xiaohei)
cls.class_func1()
@classmethod
def class_func1(cls):
print(‘我是类方法1‘)
# r = MyRedis(‘211.149.218.16‘, ‘123456‘)
MyRedis.other()
MyRedis.class_func()
Python--私有
Posted 王思磊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python--私有相关的知识,希望对你有一定的参考价值。
以上是关于Python--私有的主要内容,如果未能解决你的问题,请参考以下文章