发布于2024-11-06 19:30 阅读(694) 评论(0) 点赞(25) 收藏(5)
我有以下代码片段 - 我想要执行的操作的简化版本。但它给出了递归错误。
class File:
def __new__(cls, filename):
extension = filename.split(".")[-1].lower()
if extension == "csv":
cls = CSVFile
elif extension == "json":
cls = JSONFile
else:
raise ValueError(f"Unsupported file extension: {extension}")
# instance = super().__new__(cls) # this works
instance = cls.create_instance(filename)
return instance
class CSVFile(File):
def __init__(self, filename):
self.filename = filename
@classmethod
def create_instance(cls, filename):
print("CSVFile, create_instance")
return cls(filename)
class JSONFile(File):
def __init__(self, filename):
self.filename = filename
@classmethod
def create_instance(cls, filename):
print("JSONFile, create_instance")
return cls(filename)
# Example usage
file_instance = File("data.csv")
print(f"File instance: {file_instance.filename}")
你知道怎样让它发挥作用吗?
__new__
create_method
当子类方法调用时间接调用自身cls
。
如果您想要一个工厂方法,请定义一个独特的方法,而不是试图劫持它__new__
。
File("data.cvs"
调用File.__new__(File, "data.csv")
哪个调用CSVFile.create_method("data.csv")
哪个调用CSVFile("data.csv")
哪个调用CSVFile.__new__(CSVFile, "data.csv")
哪个,因为CSVFile.__new__
未定义,所以调用File.__new__(CSVFile, "data.csv")
...调用 CSVFile.create_method("data.csv") 哪个...
作者:黑洞官方问答小能手
链接:https://www.pythonheidong.com/blog/article/2043852/312d5f66f1c7c7eccfdf/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!