常用语句 - C++

来自牛奶河Wiki
阿奔讨论 | 贡献2024年8月20日 (二) 10:36的版本 (创建页面,内容为“=== Compile === ==== 当前函数名 ==== 在大多数编译器中,__FUNCTION__ 宏会被替换为当前函数名 cout << "Current Function: " << __FUNCTION__ << std::endl; * __FUNCTION__ : myfun * __func__ : myfun * __PRETTY_FUNCTION__ : void sys_info(std::string), gcc 分类:Develop 分类:C++”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

Compile

当前函数名

在大多数编译器中,__FUNCTION__ 宏会被替换为当前函数名

cout << "Current Function: " << __FUNCTION__ << std::endl;
  • __FUNCTION__  : myfun
  • __func__  : myfun
  • __PRETTY_FUNCTION__ : void sys_info(std::string), gcc