python 类的方法带的self理解
2021-06-11 01:03
阅读:638
标签:对象 实例 rgba sel def ini init 方法 style 1.self指的是类实例对象本身(注意:不是类本身)。 python 类的方法带的self理解 标签:对象 实例 rgba sel def ini init 方法 style 原文地址:https://www.cnblogs.com/hixiaowei/p/14238780.html
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理解
文章链接:http://soscw.com/index.php/essay/93366.html
文章标题:python 类的方法带的self理解
文章链接:http://soscw.com/index.php/essay/93366.html
评论
亲,登录后才可以留言!