我遇到了一些代码,想知道它是否只是一个侥幸,它按预期工作还是只是不好的做法。考虑以下 MCVE ( ideone ):
#include <cstdio>
struct dummyStruct
{
unsigned short min[4];
unsigned short max[4];
int dummyBuffer; // This just happens to be here as a real variable in the original code, not just as a buffer.
};
int main()
{
dummyStruct db;
// Note that the size of the short is assumed to be half of that of the %d specifier
sscanf(" 123, 456, 789, 112", "%d, %d, %d, %d", db.min+0, db.min+1, db.min+2, db.min+3);
sscanf("29491, 29491, 29491, 29491", "%d, %d, %d, %d", db.max+0, db.max+1, db.max+2, db.max+3);
db.dummyBuffer = 1234;
printf("%hd, %hd, %hd, %hd\n", db.min[0], db.min[1], db.min[2], db.min[3]);
printf("%hd, %hd, %hd, %hd\n", db.max[0], db.max[1], db.max[2], db.max[3]);
printf("%d\n", db.dummyBuffer);
return 0;
}
结构的内容是由标准保证的,还是这种未定义的行为?我在N4810中没有提到这一点。或者,如果我们颠倒变量的顺序,例如
printf("%hd, %hd, %hd, %hd\n", db.min[0], db.min[2], db.min[1], db.min[3]);
内容有db.min
保证吗?参数的顺序(从左到右)是赋值顺序吗?另请注意,即使已定义,我也不是在问为什么这是不好的做法。我也不需要评论告诉我不要使用scanf
. 我不是。