如何使用宏将变量传递给函数(目标c)
有谁知道如何动态获取传递到函数中的所有变量值以进行日志记录?
我正在寻找一种简单的方法(例如使用编译器宏)来记录函数以及传递给函数的变量值(然后将其写入日志文件,以便我们可以轻松找到导致函数执行的输入)崩溃)
我一直在尝试
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用这样的内容:
请注意,NSLog 中的 _str 之前没有逗号 - 这意味着您在调用代码中使用的字符串将(由编译器)附加到“%s:”字符串以成为复合格式字符串对于 NSLog。您想要打印的任何参数都可以包含在传入的格式字符串中。 %s 适用于 _ _ func _ _,而 _str 适用于其余传入的变量:
这样做的优点是您可以在调试时有条件地记录所需的任何文本和变量,并自动在前面添加函数名称到输出。
I use something like this:
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:
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.