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

关于Python的self指向性

时间:2015-12-16 17:08:24      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

Python的self是指向类的实例化对像,而不是类本身,每次调用类的实例化即self指向此实例化对像,如下代码;

 1 class Person:
 2     def __init__(self,name):
 3         self.name=name
 4     def sayhello(self):
 5         print (My name is:,self.name)
 6         
 7 p=Person(Bill)
 8 P1=Person(APLEE)
 9 print p.sayhello()
10 print P1.sayhello()

 

关于Python的self指向性

标签:

原文地址:http://www.cnblogs.com/kevincai/p/5051413.html

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