gpt4 book ai didi

c++ - 在 C++ 中返回错误的类型

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:34:23 26 4
gpt4 key购买 nike

我有一个包含三个浮点分量(r、g、b)的 Color 类。

我必须编写以下函数:

Color getColor(unsigned char values[], int i)

通常我应该这样编程:

Color getColor(unsigned char values[], int i){
return Color((float) values[i]/255.0, (float) values[i+1]/255.0, (float) values[i+2]/255.0);
}

但是我错了

return values[i];

当我编译时,我没有遇到任何编译错误,也没有遇到运行时错误。

为什么这是可能的?

最佳答案

这可能是 Color 类的非显式构造函数接受 unsigned char 作为其参数的结果。

这意味着您在 Color 类中有构造函数,带有单个参数或多个参数其余为默认参数。

关于c++ - 在 C++ 中返回错误的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26993116/

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