码迷,mamicode.com
首页 > 其他好文 > 详细

类的实例化,self

时间:2019-01-21 00:29:43      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:print   tom   形参   init   pre   def   int   abc   show   

class Person:
x = ‘abc‘

def __init__(self, name, age=19):
self.name = name
self.y = age
#print("pengjai")

def show(self,y):
# print(x)
Person.x = y


tom=Person("jia")
tom.show(2) #self就是实例化对象
Person.show(2,8) #直接将self当做形参来

类的实例化,self

标签:print   tom   形参   init   pre   def   int   abc   show   

原文地址:https://www.cnblogs.com/pengwa1226/p/10296780.html

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