Python - 面向对象编程 - __str__()
2021/8/29 17:06:12
本文主要是介绍Python - 面向对象编程 - __str__(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
为什么要讲 __str__
- 在 Python 中,直接 print 一个实例对象,默认是输出这个对象由哪个类创建的对象,以及在内存中的地址(十六进制表示)
- 假设在开发调试过程中,希望使用 print 实例对象时,输出自定义内容,就可以用 __str__ 方法了
重点
必须返回字符串
不使用 __str__ 的栗子
class PoloBlog: def __init__(self, name): self.name = name blog1 = PoloBlog("小菠萝") print(blog1) # 输出结果 <__main__.PoloBlog object at 0x1078a4dc0>
新增 __str__ 方法
class PoloBlog: def __init__(self, name): self.name = name def __str__(self): return "name is %s" % self.name blog1 = PoloBlog("小菠萝") print(blog1) # 输出结果 name is 小菠萝
这篇关于Python - 面向对象编程 - __str__()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享
- 2024-11-06Python 基础编程入门教程
- 2024-11-05Python编程基础:变量与类型
- 2024-11-05Python编程基础:变量与类型
- 2024-11-04Python编程基础:变量与类型
- 2024-11-04Python编程基础
- 2024-11-04Python编程基础入门指南