C printf 函数帮助

发布于 2024-11-07 04:35:56 字数 255 浏览 0 评论 0原文

我正在尝试复制 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 技术交流群。

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

发布评论

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

评论(1

吻泪 2024-11-14 04:35:56

要在 C 中使用可变参数列表,您需要使用编译器附带的 stdarg.h 头文件中定义的一些宏。

这里是如何编写自己的 printf 的详细说明

如果您只是想将参数传递给真正的 printf 而无需进一步操作,您可以使用 printf 的 vfprintf 变体,但需要单独扩展 fmt 参数:

static void echo(NSString *fmt, ...)
{
    va_list args;
    NSString *logfmt = [NSString stringWithFormat: @"<<<<<<<%s>>>>>>>", [fmt UTF8String]];
    va_start (args, fmt);
    vfprintf( stdout, [logfmt UTF8String], args );
    va_end (args);
    [logfmt release];
}

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:

static void echo(NSString *fmt, ...)
{
    va_list args;
    NSString *logfmt = [NSString stringWithFormat: @"<<<<<<<%s>>>>>>>", [fmt UTF8String]];
    va_start (args, fmt);
    vfprintf( stdout, [logfmt UTF8String], args );
    va_end (args);
    [logfmt release];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文