c++ 输出当前函数名
时间: 2023-12-15 10:06:53 浏览: 82
C++如何获取当前系统时间及格式化输出
在 C++ 中,可以使用 `__func__` 预定义宏来输出当前函数名,例如:
```c++
#include <iostream>
void foo() {
std::cout << "Current function name: " << __func__ << std::endl;
}
int main() {
foo();
return 0;
}
```
输出结果为:
```
Current function name: foo
```
阅读全文