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

对象的方法

时间:2017-10-19 00:55:47      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:short   hello   eth   self   bin   als   comment   on()   usr   

#!/usr/bin/python
# Filename: method.py


class Person:
    def sayHi(self):
        print ‘Hello, how are you?‘

p = Person()
p.sayHi()


# This short example can also be written as Person().sayHi()

 

这里我们看到了self的用法。注意sayHi方法没有任何参数,但仍然在函数定义时有self

对象的方法

标签:short   hello   eth   self   bin   als   comment   on()   usr   

原文地址:http://www.cnblogs.com/nku-wangfeng/p/7689972.html

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