我在Android NDK的C++臂中缩小转换错误。
有以下代码:
int16_t ax = li.A.x, ay = li.A.y;
int16_t bx = li.B.x, by = li.B.y;
Rect16 rcA = { ax - 8, ay - 8, ax + 8, ay + 8 };
Rect16 rcB = { bx - 8, by - 8, bx + 8, by + 8 };
并尝试编译时得到此错误:
error: narrowing conversion of '(((int)ay) + -0x00000000000000008)' from 'int' to 'int16_t' inside { }
Rect16结构:
typedef struct tagRect16 {
int16_t left, top, right, bottom;
} Rect16;
最佳答案
您的问题源于以下事实:编译器在表达式ay - 8
中表示您正在调用int operator-(int, int)
。您需要使用this question之类的方法来告诉编译器8是短的。