__FILE__, __LINE__, and __FUNCTION__ usage in C++(__FILE__、__LINE__ 和 __FUNCTION__ 在 C++ 中的用法)
问题描述
假设您的 C++ 编译器支持它们,是否有任何特殊原因不使用 __FILE__
、__LINE__
和 __FUNCTION__代码> 用于记录和调试目的?
Presuming that your C++ compiler supports them, is there any particular reason not to use __FILE__
, __LINE__
and __FUNCTION__
for logging and debugging purposes?
我主要关心的是向用户提供误导性数据——例如,报告不正确的行号或由于优化而导致的函数——或因此导致性能下降.
I'm primarily concerned with giving the user misleading data—for example, reporting the incorrect line number or function as a result of optimization—or taking a performance hit as a result.
基本上,我可以相信 __FILE__
、__LINE__
和 __FUNCTION__
会总是做正确的事吗?>
Basically, can I trust __FILE__
, __LINE__
and __FUNCTION__
to always do the right thing?
推荐答案
__FUNCTION__
是非标准的,__func__
存在于 C99/C++11 中.其他的(__LINE__
和 __FILE__
)都很好.
__FUNCTION__
is non standard, __func__
exists in C99 / C++11. The others (__LINE__
and __FILE__
) are just fine.
它总是会报告正确的文件和行(如果您选择使用 __FUNCTION__
/__func__
,则会报告正确的文件和行).优化是一个非因素,因为它是一个编译时宏扩展;它绝不会以任何方式影响性能.
It will always report the right file and line (and function if you choose to use __FUNCTION__
/__func__
). Optimization is a non-factor since it is a compile time macro expansion; it will never affect performance in any way.
这篇关于__FILE__、__LINE__ 和 __FUNCTION__ 在 C++ 中的用法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:__FILE__、__LINE__ 和 __FUNCTION__ 在 C++ 中的用法
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01