在实例末尾运行的python类中是否有类似__init__的函数?

时间:2019-04-30 13:07:42

标签: python class init

我正在尝试在完成所有操作的类中创建一个函数。 例如,__init__函数始终在初始化过程中运行; 但我想要另一个在实例末尾运行的对象。 我应该如何创建或调用这样的函数?

class SomeClass:
    def __init__(self):
        #Some code to be runned at the beginning
    def function_for_finalization(self):
        #Some code to be runned at the end of an instance

0 个答案:

没有答案