查询
1 词典释义:
printf
时间: 2025-06-15 23:20:30
英 [ˈprɪnt ef]
美 [ˈprɪnt ef]

n. 打印函数;写格式化输出

双语例句
  • Is there a command to printf?

    是否有个命令来打印?

  • Printf is used instead of println.

    使用了printf而非println。

  • And then I said printf "Oh hi world!"

    紧接着是printf“Oh, hi, world !”

  • So not the actual function as we'll see printf.

    所以说,printf并不是我们所看到的那个样子。

  • The %03d is a printf-style format specifier.

    03d 是 printf风格的格式说明符。

  • For the printf, do you use the printf for that?

    对于printf,你也对它使用printf吗?

  • So for anything that's not printf, you have to write out code?

    对于不是打印输出的,你需要写出代码吗?

  • Note the use of printk here: this is the kernel printf function.

    注意此处printk的用法:这是内核的printf函数。

  • The first parameter to printf is the address of an output string.

    printf的第一个参数是输出字符串的地址。

  • Qlog is nice when you don't want to write printf STDERR every time.

    如果不希望每次编写printf STDERR,那么qlog将非常有用。

  • After computing the factorial, you now want to print it out using printf.

    计算了阶乘之后,现在需要用printf将其打印出来。

  • In the example below, the printf (3) assumes that a pointer is 32-bits.

    在下面的例子中,printf(3)假设指针是32位的。

  • It simply USES printf, but this could easily send an SNMP trap, for example.

    (它只使用printf,但是也可以轻松地发送一个(比如)SNMP trap。)

  • However XSLT does have an element corresponding to printf : XSL: message.

    不过XSLT有一个与printf对应的元素:xsl: message。

  • In this case, each string in the collection is passed as an argument to printf.

    这样,集合的每一个字符串会被作为printf的参数传入。

  • The function printf (3) and related functions can be a major source of problems.

    函数printf(3)及其相关函数都可能成为问题的根源。

  • So it turns out with printf you can actually control those kinds of aesthetics as well.

    所以我们用printf也可以控制这种,打印结果的美观性。

  • So, not only do we only have one copy of printf on the disk, we only have one in memory.

    所以,我们不但可以在磁盘上只有printf的一个副本,而且在内存中也只需要一个副本。

  • If I wanna say something, do something, then say something else, I just call printf twice.

    如果我想说点什么,做点什么,再说点什么,我就得调用printf两次。

  • Some of the most convenient features added in C99 are in the printf family of functions.

    C99中增加的最方便的特性在printf函数家族中。

  • Similarly, functions such as printf and fprintf invoke the write system call to do their work.

    类似地,printf和fprintf这样的函数调用write系统调用完成其工作。

  • So is there a slash letter command for printf they could just like type you know what I mean?

    所以这里有一个斜杠字母命令,来printf,他们可以像,【听不见的】你懂我的意思吗?

  • Unresolved function names, like printf() in this case, are marked out in the object file produced.

    在生成的目标文件中标记出了未解析的函数名,如 printf() 。

  • Astute readers will notice that many of the functions called (such as printf) are missing from the output.

    聪明的读者可能会注意到,很多函数调用(例如printf)在这个输出中都没有出现。

  • Printf And then I'm gonna use the same printf line after that to actually plop it into this formatted string.

    我还是要用到,来把它转换成格式化字符串。

  • But what actually happens when your program tries to call printf — the real way this works — is a bit more complex.

    但是,当您的程序尝试调用printf时,也就是说实际操作的时候,具体发生的事情却稍微有点复杂。

  • Use printf tokens for dynamic content in a full sentence rather than breaking up the sentence into multiple strings.

    在完整的句子中使用printf标记来标记动态内容而不要将句子分割为多个字符串。

  • When the SPU needs to do any standard library calls like printf or exit, it has to call back to the main thread.

    当 SPU 需要执行任何标准的库调用时,例如 printf 或 exit,它都需要回调主线程。

  • This can be a pain at first — some programmers don't realize that printf and many other functions actually return a value.

    起初,这可能是一个痛苦的问题——有些程序员并没有认识到printf和很多其他函数实际上也会返回一个值。

  • In c, a common mistake is to pass attacker data into format string parameters (such as the first parameter of printf (3)).

    在c语言中,一个常见的错误是将攻击者的数据传递到格式化字符串参数中(例如printf(3)的第一个参数)。