警告 C4244:“争论”; :从“int”转换;为“浮动”,可能会丢失数据 (C++)

发布于 2024-12-26 21:29:16 字数 167 浏览 0 评论 0原文

struct Vector {

    float i,j,k;

} std::vector pt[size];

... = ... + pt[temp];

temp 的类型为 int。编译器给出警告作为标题。

struct Vector {

    float i,j,k;

} std::vector pt[size];

... = ... + pt[temp];

temp is of type int. Compiler gives the warning as the title.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

找个人就嫁了吧 2025-01-02 21:29:16

您收到此警告是因为编译器将 int 隐式转换为 float

可能的原因可能是这样的

int x = 7331;
float y = x;

You get this warning because the compiler is implicitly converting an int to a float.

A possible cause can be something like

int x = 7331;
float y = x;
何以畏孤独 2025-01-02 21:29:16

很难说,因为您隐藏了大部分代码,并且我们看不到存储在 std::vector 中的数据类型,因为您要么发布了错误的代码,要么删除了模板参数。

正在添加什么? pt 是否存储浮点数?像这样的行:

    float x = 5.0f;
    int y = 2 + x;

可能会生成此警告,因为 x 会隐式转换为 int。

It's hard to say given that you've hidden much of the code, and we can't see the type of data that is stored in the std::vector, as you've either posted bad code or removed the template argument.

What is being added? Does pt store floats? A line like:

    float x = 5.0f;
    int y = 2 + x;

May generate this warning since there will be an implicit conversion of x to an int.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文