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

Python进阶-----通过类的内置方法__str__和__repr__自定制输出(打印)对象时的字符串信息

时间:2018-10-15 00:42:04      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:int()   --   init   字符   __str__   默认   执行   pytho   年龄   

__str__方法其实是在print()对象时调用,所以可以自己定义str字符串显示信息,在该方法return一个字符串,如果不是字符串则报错
print(obj) 等同于-->str(obj) 等同于-->obj.__str__

#未自定__str__信息
class Foo:
    def __init__(self,name,age):
        self.name = name
        self.age = age

f = Foo(Menawey,24)
print(f)   #<__main__.Foo object at 0x000002EFD3D264A8>  因为没有定制__str__,则按照默认输出

#自定__str__信息
class Foo:
    def __init__(self,name,age):
        self.name = name
        self.age = age
    def __str__(self):
        return 名字是%s,年龄是%d%(self.name,self.age)

f1 = Foo(Meanwey,24)
print(f1)           #名字是Meanwey,年龄是24
s = str(f1)         #---> f1.__str__
print(s)            #名字是Meanwey,年龄是24

__repr__方法是在控制台直接输出一个对象信息或者print一个对象信息时调用,如果自定了__str__信息,print时默认执行__str__
如果没有自定__str__,则print时执行__repr__

#未自定__str__信息,自定了__repr__
class Foo:
    def __init__(self,name,age):
        self.name = name
        self.age = age
    def __repr__(self):
        return 来自repr-->名字是%s,年龄是%d%(self.name,self.age)

f2 = Foo(Meanwey,24)
print(f2)               #来自repr-->名字是Meanwey,年龄是24   因为没有自定__str__,则执行__repr__

#自定了__str__信息,自定了__repr__
class Foo:
    def __init__(self,name,age):
        self.name = name
        self.age = age
    def __str__(self):
        return 来自str-->名字是%s,年龄是%d%(self.name,self.age)

    def __repr__(self):
        return 来自repr-->名字是%s,年龄是%d%(self.name,self.age)

f2 = Foo(Meanwey,24)
print(f2)               #来自str-->名字是Meanwey,年龄是24   因为自定了__str__,则print时不会执行__repr__

 

Python进阶-----通过类的内置方法__str__和__repr__自定制输出(打印)对象时的字符串信息

标签:int()   --   init   字符   __str__   默认   执行   pytho   年龄   

原文地址:https://www.cnblogs.com/Meanwey/p/9788843.html

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