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

Python 特殊方法

时间:2017-09-06 22:06:42      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:实例   调用   elf   特殊   int   结果   div   blog   log   

 

 

1 _int_

定义在类中,创建类的实例的时候回先调用此方法,用于对该类的一些初始化(例如变量初始化)

2 _str_

    def _str_(self):
        return "this is a string‘

  定义在类中,用print调用类的时候,会调用到此方法

class strtest:  
    def __str__(self):  
        return "str: this is only test"  
  
if __name__ == "__main__":  
    st=strtest()  
    print st  

 执行结果为:

$./str.py

str: this is only test

Python 特殊方法

标签:实例   调用   elf   特殊   int   结果   div   blog   log   

原文地址:http://www.cnblogs.com/gforc/p/7487043.html

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