C printf 函数帮助
我正在尝试复制 NSLog,但在开始时没有所有不必要的日期。我尝试过以下 c 函数(我自己制作),但它不会记录任何非 NSString 的其他值。请你告诉我如何做才能记录任何值?
static void echo(NSString *fmt, ...) {
printf("<<<<<<<%s>>>>>>>", [fmt UTF8String]);
}
I am trying to duplicate NSLog but without all of the unnecessary dates at the beginning. I have tried the following c function (I made myself), but it wont log any other values that are not NSStrings. Please could you tell me how I could do it so that it would log any value?
static void echo(NSString *fmt, ...) {
printf("<<<<<<<%s>>>>>>>", [fmt UTF8String]);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 C 中使用可变参数列表,您需要使用编译器附带的 stdarg.h 头文件中定义的一些宏。
这里是如何编写自己的 printf 的详细说明
如果您只是想将参数传递给真正的 printf 而无需进一步操作,您可以使用 printf 的 vfprintf 变体,但需要单独扩展 fmt 参数:
To use variadic argument lists in C you need to use a few macros that are defined in the stdarg.h header file that comes with your compiler.
here is a detailed explanation of how to write your own printf
If you just want to pass the arguments to the real printf without further manipulation you can use the vfprintf variant of printf instead but you need to extend the fmt parameter separately: