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

021: class, objects and instance: 特殊方法

时间:2016-02-21 11:31:16      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

所有的特殊的方法,都是以如下格式存在:

__method_name__

 

1. __str__

如果一个类的定义当中有这样一个方法,则str(instance)的时候,会默认调用该实例的__str__方法

如果没有定义__str__方法,则默认返回该对象的地址:

 

class Employee(object):
    def __init__(self, name):
        super(Employee, self).__init__()
        self.name = name

    def __str__(self):
        return self.name
e
= Employee("Miles") print(e.name) print(str(e))

 

因此系统类型 int 要转换为string,则可以方便地使用如下方法:

num = 101
num_str = str(num)

 

021: class, objects and instance: 特殊方法

标签:

原文地址:http://www.cnblogs.com/jcsz/p/5204499.html

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