我有以下代码
//Point.h
#define WIDTH 8
#define HEIGHT 8
typedef struct Point
{
char x;
char y;
} Point;
//Board.c
#include <stdbool.h>
// Some other functions that we don't care about...
bool inBounds(Point * p)
{
return p->x >= 0
&& p->x <= WIDTH
&& p->y >= 0
&& p->y <= HEIGHT;
}
当我编译这个(ppu-gcc 4.1.1)时,我收到以下警告
warning: comparison is always true due to limited range of data type
即使 char 的范围是 -127 到 127 并且 WIDTH 是 8,这完全在 char 的范围内。我已经尝试将 WIDTH 显式转换为 char,但仍然出现错误。