gpt4 book ai didi

c++ - 在 Android NDK 的 C++ arm 中出现缩小转换错误

转载 作者:太空宇宙 更新时间:2023-11-04 12:21:58 25 4
gpt4 key购买 nike

我在 Android NDK 的 C++ arm 中遇到了缩小转换错误。

有如下代码:

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 是一个短整数.

关于c++ - 在 Android NDK 的 C++ arm 中出现缩小转换错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4490111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com