python 类变量和对象变量的区别联系-----类的基础(二)

class person(object):
 

    population =0#represent a person  每次引用类时,都会先从初始化函数__init__开始,所以每引用一次类,类变量population就会增加1
类变量的作用空间是整个类,而name是对象变量,只能在对象内部有用 

 

    def __init__(self,name):#initializing the person's data

        self.name = name

        print("initializing:%s" % self.name)#when this person is created,he/she

        person.population = person.population +1#adds to the population

    def __del__(self):

        print("say goodbye%s"% self.name )#I am dying

        person.population = person.population -1

 

        if person.population ==0:

            print("I am a last one")

        else:

            print("We have %d persons here" % person.population)

 

    def sayhi(self):

        print("Hi,my name is %s." % self.name)

 def howmany(self):

        if person.population ==1:

            print("I am the only man here")

        else:

            print("We have %d people left here" % person.population)

 

tom = person("tom")

tom.sayhi()

tom.howmany()

 

John = person("John")

John.sayhi()

John.howmany()

 

kite = person("kite")

kite.sayhi()

kite.howmany()

转载于:https://my.oschina.net/piginwind/blog/692648

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值