如果 stament 与 uint8_t

if stament with uint8_t

提问人:David Moreno García 提问时间:11/20/2022 更新时间:11/20/2022 访问量:32

问:

知道变量 tempStatusSelectorByte 的值为 0,在 if stament 中,它为 tempStatusSelectorByte>4 提供 true。


uint8_t tempStatusSelectorByte;

tempStatusSelectorByte = AT24C32_Device.readStatusSelectorByte();
printf("settingup -> statusSelectorByte: %d\n", statusSelectorByte); //It prints 0

if(tempStatusSelectorByte>4 ){ // it is true

请让我知道如何解决问题。

if 语句 uint8t

评论

1赞 11/20/2022
您正在打印,但正在检查 .statusSelectorBytetempStatusSelectorByte
0赞 11/20/2022
结论:为变量选择适当且独特的名称。

答: 暂无答案