C++ 在函数内部输出当前类名方式
Posted yangjinghui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 在函数内部输出当前类名方式相关的知识,希望对你有一定的参考价值。
开发环境:QtCreator C++
using namespace std; /* 基类汽车 */ class Car public: Car() virtual ~Car() virtual void move(void); ; /* 基本属性汽车运动 */ void Car::move(void) cout << __PRETTY_FUNCTION__ << endl; cout << typeid(*this).name() << endl; class CarSmall : public Car public: CarSmall() ~CarSmall() void move(void) override ; ; void CarSmall::move(void) cout << __PRETTY_FUNCTION__ << endl; cout << typeid(*this).name() << endl; int main() cout << "Hello World!" << endl; cout << __PRETTY_FUNCTION__ << endl; Car car; car.move(); CarSmall carSmall; carSmall.move(); return 0;
编译输出:
python 动态获取当前运行的类名和函数名的方法
一、使用内置方法和修饰器方法获取类名、函数名
python中获取函数名的情况分为内部、外部,从外部的情况好获取,使用指向函数的对象,然后用__name__属性
a.__name__
除此之外还可以:
尽管有些脱裤子放屁,总之,从外部获取的方法是非常灵活的。
有些同学需要从函数内部获取函数本身的名字,就需要用些技巧了。
1.使用sys模块的方法:
def a():
print sys._getframe().f_code.co_name
f_code和co_name可以参考python源码解析的pyc生成和命名空间章节。
2.使用修饰器的方法:
使用修饰器就可以对函数指向一个变量,然后取变量对象的__name__方法。
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系统来说
以上是关于C++ 在函数内部输出当前类名方式的主要内容,如果未能解决你的问题,请参考以下文章