如何使用宏将变量传递给函数(目标c)

发布于 2024-09-24 17:40:17 字数 308 浏览 6 评论 0原文

有谁知道如何动态获取传递到函数中的所有变量值以进行日志记录?

我正在寻找一种简单的方法(例如使用编译器宏)来记录函数以及传递给函数的变量值(然后将其写入日志文件,以便我们可以轻松找到导致函数执行的输入)崩溃)

我一直在尝试

#define NFDebug( s, ... ) NSLog( @"DEBUG: %s: %@", __PRETTY_FUNCTION__, \
[NSString stringWithFormat:(@"%@"), ##__VA_ARGS__] )

,它提供了一切,但变量值

Does anyone know how to dynamically get all the variables values passed into a function for the sake of logging ?

I'm looking for a simple way (like using a compiler macro) to be able to log the function, and the variable values passed into it (which will then be written to a log file so we can easily find inputs that cause functions to crash)

I've been trying

#define NFDebug( s, ... ) NSLog( @"DEBUG: %s: %@", __PRETTY_FUNCTION__, \
[NSString stringWithFormat:(@"%@"), ##__VA_ARGS__] )

,which gives everything, BUT the variables values

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半仙 2024-10-01 17:40:17

我使用这样的内容:

#ifdef YOUR_DEBUG_ENABLER_SYMBOL_ONLY_SET_IN_DEBUG_BUILDS
#define DEBUG_ONLY(_code_) _code_
#else
#define DEBUG_ONLY(_code_)
#endif

#define DebugLog(_str, ...) DEBUG_ONLY(NSLog(@"%s: " _str, __func__, ## __VA_ARGS__))

请注意,NSLog 中的 _str 之前没有逗号 - 这意味着您在调用代码中使用的字符串将(由编译器)附加到“%s:”字符串以成为复合格式字符串对于 NSLog。您想要打印的任何参数都可以包含在传入的格式字符串中。 %s 适用于 _ _ func _ _,而 _str 适用于其余传入的变量:

float f;
int i;
NSString* s;
// Initialise f, i, and s to something
...
// Log the values only when in debug mode, with function name auto-prepended
DebugLog(@"float is: %f - int is: %d - string is: %@", f, i, s);

这样做的优点是您可以在调试时有条件地记录所需的任何文本和变量,并自动在前面添加函数名称到输出。

I use something like this:

#ifdef YOUR_DEBUG_ENABLER_SYMBOL_ONLY_SET_IN_DEBUG_BUILDS
#define DEBUG_ONLY(_code_) _code_
#else
#define DEBUG_ONLY(_code_)
#endif

#define DebugLog(_str, ...) DEBUG_ONLY(NSLog(@"%s: " _str, __func__, ## __VA_ARGS__))

Note that there is no comma before the _str in the NSLog - this means the string you use in your calling code is appended (by the compiler) to the "%s: " string to become a composite format string for the NSLog. Whatever parameters you want to print can be included in your passed in format string. The %s applies to the _ _ func _ _ and your _str applies to the rest of the passed in variables:

float f;
int i;
NSString* s;
// Initialise f, i, and s to something
...
// Log the values only when in debug mode, with function name auto-prepended
DebugLog(@"float is: %f - int is: %d - string is: %@", f, i, s);

This has the advantage that you can log whatever text and variables you want, conditionally on debug, and with the function name automatically prepended onto the output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文