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

python 类的方法带的self理解

时间:2021-01-08 10:33:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:对象   实例   rgba   sel   def   ini   init   方法   style   

1.self指的是类实例对象本身(注意:不是类本身)。

class Person:
    def _init_(self,name):
        self.name=name
    def sayhello(self):
        print My name is:,self.name
p=Person(Bill)
print p

 

python 类的方法带的self理解

标签:对象   实例   rgba   sel   def   ini   init   方法   style   

原文地址:https://www.cnblogs.com/hixiaowei/p/14238780.html

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