使用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 ,我在网上搜索但没有得到直接答案
答案 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_t
与unsigned 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_t
是unsigned char
的typedef,hhx
会修复警告。