python获得类名和函数名的方法

Posted idvcn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python获得类名和函数名的方法相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python3
import sys

class Point:
   def __init__( self, x=0, y=0):
      self.x = x
      self.y = y
   def __del__(self):
      class_name = self.__class__.__name__
      fun_name = sys._getframe().f_code.co_name
      print (fun_name,class_name, "destroyed")

 

p = Point()
del p
__del__ Point destroyed

  

 

以上是关于python获得类名和函数名的方法的主要内容,如果未能解决你的问题,请参考以下文章

python获取函数名类名

封装及propery的使用

子类调用父类static方法怎么获得子类类名

获取类名方法名的方法

Python学习 :函数

iOS 静态混淆,使用宏进行替换字符串,或者解析mach-o中对应的section进行类名和方法名的替换