什么是hh和h格式说明符的需要?

时间:2014-02-14 14:41:10

标签: c scanf format-specifiers

使用hhx代替x有什么用,在下面的代码中 mac_str是char指针 mac uint8_t数组

 sscanf(mac_str,"%x:%x:%x:%x:%x:%x",&mac[0],&mac[1],&mac[2],&mac[3],&mac[4],&mac[5]);

当我尝试上面的代码时,它会发出警告,

warning: format ‘%x’ expects argument of type ‘unsigned int *’, but argument 8 has type ‘uint8_t *’ [-Wformat]

但我在一些代码中看到了他们指定的

sscanf(str,"%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",&mac[0],&mac[1],&mac[2],&mac[3],&mac[4],&mac[5]);

不提出任何警告

但两者的工作方式相同,需要使用 hhx 代替 x ,我在网上搜索但没有得到直接答案

3 个答案:

答案 0 :(得分:5)

hh长度修饰符,用于指定参数的目标类型。转换格式说明符x的默认值为unsigned int*。使用hh,它会变为unsigned char*signed char*

有关详细信息,请参阅表格herein

答案 1 :(得分:5)

&mac[0]是指向unsigned char的指针。 1 %hhx表示相应的参数指向unsigned char。使用方形钉用于方孔:格式字符串中的转换说明符必须与参数类型匹配。


1 实际上,&mac[0]是指向uint8_t的指针,而%hhx仍然是uint8_t的错误。它在许多实现中“起作用”,因为在许多实现中uint8_tunsigned char相同。但正确的格式为"%" SCNx8,如:

#include <inttypes.h>
…
scanf(mac_str, "%" SCNx8 "… rest of format string", &mac[0], … rest of arguments);

答案 2 :(得分:2)

hhx将输入转换为unsigned char,而x转换为unsigned int。由于uint8_tunsigned char的typedef,hhx会修复警告。