Home > Backend Development > Python Tutorial > python 动态获取当前运行的类名和函数名的方法

python 动态获取当前运行的类名和函数名的方法

WBOY
Release: 2016-06-06 11:30:17
Original
2783 people have browsed it

一、使用内置方法和修饰器方法获取类名、函数名

python中获取函数名的情况分为内部、外部,从外部的情况好获取,使用指向函数的对象,然后用__name__属性

代码如下:

def a():pass
a.__name__


除此之外还可以:

代码如下:

getattr(a,'__name__')


尽管有些脱裤子放屁,总之,从外部获取的方法是非常灵活的。

有些同学需要从函数内部获取函数本身的名字,就需要用些技巧了。
1.使用sys模块的方法:

代码如下:


def a():
print sys._getframe().f_code.co_name


f_code和co_name可以参考python源码解析的pyc生成和命名空间章节。
2.使用修饰器的方法:
使用修饰器就可以对函数指向一个变量,然后取变量对象的__name__方法。

代码如下:

def timeit(func):
def run(*argv):
   print func.__name__
   if argv:
    ret = func(*argv)
   else:
    ret = func()
   return ret
return run

@timeit
def t(a):
print a
t(1)

二、使用inspect模块动态获取当前运行的函数名


代码如下:


import inspect

def get_current_function_name():
    return inspect.stack()[1][3]
class MyClass:
    def function_one(self):
        print "%s.%s invoked"%(self.__class__.__name__, get_current_function_name())
if __name__ == "__main__":
    myclass = MyClass()
    myclass.function_one()


动态获取当前运行的函数名很方便,特别是对于一些debug系统来说
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template