-2

在我的主要方法中有以下代码:

int main(int argc, char* argv[])
{

    Color c1(10,1,2); 
    HSL h=convertToHSL(c1);
    return 0;
}

使用以下 convertToHSL 方法:

HSL convertToHSL(Color const& c) {

   return HSL(0,0,0);
}

我的项目中出现构建错误。颜色是一个定义如下的类:

Color::Color(){}
Color::Color(float r,float g,float b){
    this->r=r;
    this->g=g;
    this->b=b;
}

Color::~Color(void){}

HSL 定义如下:

 HSL::HSL() {}
HSL::HSL(float h,float s,float l) {
    this->h=h;
    this->s=s;
    this->l=l;
}

HSL::~HSL(void){}

使用我已经提到的 convertToHSL 方法。

什么可能是错的?

4

2 回答 2

1

c1没有声明。你的意思是

Color c1(10,1,2); 
于 2013-04-04T10:05:49.123 回答
0

Color c1(10,1,2);? 缺少对象名称 c1

于 2013-04-04T10:06:35.273 回答