python-python中的封装概念

2021/5/31 1:20:13

本文主要是介绍python-python中的封装概念,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

# coding:utf-8
# author:我本善良
# create_time:2021/5/30 16:32

'''
python中封装的概念
    将不对外的私有属性或方法通过可对外使用的函数而使用(类中定义私有的,只有类内部使用,外部无法访问)
    这样做的主要原因是:保护隐私,明确区分内外
'''

class Parent(object):
    def __hello(self,data):
        print('hello %s' % data)

    def helloworld(self):
        self.__hello('world')


parent1 = Parent()
parent1.helloworld()



这篇关于python-python中的封装概念的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程