gpt4 book ai didi

c++ - gcc 编译错误,对象初始化解释为函数指针?

转载 作者:行者123 更新时间:2023-11-30 03:55:02 26 4
gpt4 key购买 nike

以下代码:

class Angle {
protected:
double rad;
Angle(double r) : rad(r){}
};

class Radian : public Angle {
public:
Radian(double rad) : Angle(rad){}
};

class Latitude : public Angle {
public:
Latitude(const Angle&a) : Angle(a){}
Latitude operator-(const Latitude &other){
return Latitude(Radian(rad-other.rad));
}
};

int main(){
double d = 0.7;
Latitude lat1(Radian(0.8));
Latitude lat2(Radian(d*1));
Latitude lat3(Radian(d));
Latitude diff2 = lat1 - lat2;
Latitude diff3 = lat1 - lat3;
return 0;
}

给出编译器错误:

$ g++ bug.cpp
bug.cpp: In function ‘int main()’:
bug.cpp:26:26: error: no match for ‘operator-’ (operand types are ‘Latitude’ and ‘Latitude(Radian)’)
Latitude diff3 = lat1 - lat3;
^
bug.cpp:26:26: note: candidate is:
bug.cpp:15:13: note: Latitude Latitude::operator-(const Latitude&)
Latitude operator-(const Latitude&l){
^
bug.cpp:15:13: note: no known conversion for argument 1 from ‘Latitude(Radian)’ to ‘const Latitude&’

如果我尝试执行 lat3 - lat3 它将给出此错误,表明它将 lat3 解释为函数指针:

error: ISO C++ forbids using pointer to a function in subtraction [-fpermissive]
lat3 - lat3;
^

lat2 - lat2 没问题。

那么这里发生了什么?为什么 lat2 和 lat3 被解释为不同的类型?错误消息中的 Latitude(Radian) 到底是什么意思?

编译器输出来自 gcc 4.9.1,gcc 版本 4.1 到 4.9 也获得了类似的结果。平台是 64 位 RHEL6。

最佳答案

将您的行更改为:

Latitude lat3((Radian(d)));

您遇到的问题称为

http://en.wikipedia.org/wiki/Most_vexing_parse

关于c++ - gcc 编译错误,对象初始化解释为函数指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29252983/

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