Python--私有

Posted 王思磊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python--私有相关的知识,希望对你有一定的参考价值。

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--私有的主要内容,如果未能解决你的问题,请参考以下文章

python之路之前没搞明白4面向对象(封装)

在片段的私有函数中使用 adapterPosition

这些角度电子邮件指令代码片段如何连接

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段