码迷,mamicode.com
首页 > 编程语言 > 详细

Python------继承

时间:2018-02-10 14:04:16      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:class   address   font   log   body   马来西亚   ini   elf   越南   

class people:
    def __init__(self,name,gender,address,country):
        self.__name=name
        self.__gender=gender
        self.__address=address
        self.__country=country
        self.__info=[self.__name,self.__gender,self.__address,self.__country]
    def getName(self):
        return self.__name
    def getGender(self):
        return self.__gender
    def getAddress(self):
        return self.__address
    def getCountry(self):
        return self.__country
class people2(people):
    def __init__(self,name,address,country="马来西亚"):    #“马来西亚”为设置的默认值
        self.__name=name
        self.__address=address
        self.__gender=""
        self.__country=country
        people.__init__(self,self.__name,self.__gender,self.__address,self.__country)
pe=people("苏苏","","陕西省","China")
print pe.getName()
print "******************"
pe2=people2("小周","山西省","越南")
print pe2.getName()
print pe2.getGender()
print pe2.getAddress()
print pe2.getCountry()
print "/*/*/*/*/*/*/*/*/*"
pe3=people2("小海","海南")
print pe3.getName()
print pe3.getAddress()
print pe3.getCountry()

【无法继承私有成员!】

结果:

苏苏
******************
小周

山西省
越南
/*/*/*/*/*/*/*/*/*
小海
海南
马来西亚

Python------继承

标签:class   address   font   log   body   马来西亚   ini   elf   越南   

原文地址:https://www.cnblogs.com/soyo/p/8438506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!