我知道memcmp()
不能用來比較的是一直沒memset()
爲0,因爲未初始化的填充結構比較結構中的溫度。然而,在我的程序中,我有一個結構在開始時有幾個不同類型,然後有幾十個相同類型,直到結構結束。我的想法是手動比較前幾種類型,然後在相同類型成員的其餘連續內存塊上使用memcmp()
。使用memcmp()和指針運算
我的問題是,什麼是關於結構填充C標準保證?我可以在任何或所有編譯器上可靠地實現這一點嗎? C標準是否允許在相同類型成員之間插入struct padding?
我已經實現了我提出的解決方案,它似乎工作完全按預期與gcc
:
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
struct foo
{
char a;
void *b;
int c;
int d;
int e;
int f;
};
static void create_struct(struct foo *p)
{
p->a = 'a';
p->b = NULL;
p->c = 1;
p->d = 2;
p->e = 3;
p->f = 4;
}
static int compare(struct foo *p1, struct foo *p2)
{
if (p1->a != p2->a)
return 1;
if (p1->b != p2->b)
return 1;
return
/* Note the typecasts to char * so we don't get a size in ints. */
memcmp(
/* A pointer to the start of the same type members. */
&(p1->c),
&(p2->c),
/* A pointer to the start of the last element to be compared. */
(char *)&(p2->f)
/* Plus its size to compare until the end of the last element. */
+sizeof(p2->f)
/* Minus the first element, so only c..f are compared. */
-(char *)&(p2->c)
) != 0;
}
int main(int argc, char **argv)
{
struct foo *p1, *p2;
int ret;
/* The loop is to ensure there isn't a fluke with uninitialized padding
* being the same.
*/
do
{
p1 = malloc(sizeof(struct foo));
p2 = malloc(sizeof(struct foo));
create_struct(p1);
create_struct(p2);
ret = compare(p1, p2);
free(p1);
free(p2);
if (ret)
puts("no match");
else
puts("match");
}
while (!ret);
return 0;
}
次要:由於將指針比較正在返回0或1,這表明確保'memcmp()'返回0或1'memcmp()= 0'!。 – chux
@chux好主意,謝謝你的建議。 – John