标签:
所有的特殊的方法,都是以如下格式存在:
__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