作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的最小示例:
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
void print_strings_and_lengths(int count, ...)
{
va_list ap;
/* Print strings */
va_start(ap, count);
for (int i = 0; i < count; i++) {
char *s = va_arg(ap, char *);
printf("%d - %s\n", i, s);
}
/* Print string lengths */
va_start(ap, count); /* Is it okay to call va_start() again without calling va_end()? */
for (int i = 0; i < count; i++) {
char *s = va_arg(ap, char *);
printf("%d - %zu\n", i, strlen(s));
}
va_end(ap);
}
int main()
{
print_strings_and_lengths(3, "apple", "ball", "cat");
return 0;
}
va_start()
在同一个变量参数列表上两次。
va_end()
在两次调用之间不调用函数。这段代码是定义明确的还是调用了未定义的行为?
最佳答案
C11 7.16.1/1:
[...] Each invocation of the
va_start
andva_copy
macros shall be matched by a corresponding invocation of theva_end
macro in the same function.
va_end
va_start
调用所以代码会导致未定义的行为,不需要诊断,因为上面的引用不是约束的一部分。
关于我们可以两次调用 va_start() 而不在其间调用 va_end() 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59608636/
我构建了一个搜索表单,它将从数据选择器中插入日期的数据库中选择标记。这很好用,但是,当我添加时间时,我得到错误。 我重建了一个类似这样的查询: $datefrom = $request->input(
我是一名优秀的程序员,十分优秀!