0

这是我的程序,由于此错误而失败:对“异常”的引用不明确。

这是为什么?

是因为我的类名是“exception”,而 C++ 已经有其他使用名称“exeption”的函数了吗?例如,在 C++ 中,我们不能使用“int”作为变量。这个逻辑在这里也适用吗?谢谢你。

#include <iostream>
#include <math.h>

using namespace std;

class exception{

public:
    exception(double x,double y ,double z)
    {
    cout<<"Please input a";

    cin>>x;
    cout<<"Please input b";

    cin>>y;
    cout<<"Please input c";

    cin>>z;

    a=x;
    b=y;
    c=z;
    /*
    try{
        int sonsAge = 30;
        int momsAge = 34;
        if ( sonsAge > momsAge){
            throw 99;
        }
    }
    catch(int x)
    {
        cout<<”son cannot be older than mom, Error number :”&lt;<x;
    }
    */
    try {
        if (a==0) {
            throw 0;
        }
        if ((b*b)-(4*a*c)<0) {
            throw 1;
        }
        cout<<"x1 is"<<(-b+sqrt(b*b-4*a*c))/(2*a)<<endl
            <<"x2 is"<<(-b-sqrt(b*b-4*a*c))/(2*a);
    } catch (int x) {
        if (x==0) {
            cout<<"Error ! cannot divide by 0";
        }
        if (x==1) {
            cout<<"The square root cannot be a negative number";
        }
    }
    };

private:
    double a,b,c;
};

int main()
{
    exception ob1(3.2,12.3,412);
    return 0;
}
4

2 回答 2

5

std::exception是标准的类名;它是标准异常层次结构的基本类型。您可以通过将其限定为 来命名您自己的类::exception。这是不使用using namespace std.

于 2012-08-19T19:49:51.420 回答
0

通过该语句using namespace stdstd::exception该类被解析为exception. 现在您定义一个具有相同名称的类。编译器现在无法通过名称区分这两个类exception。所以这个名字exception是模棱两可的。定义引用std::exception&应该可以工作,因为您可以准确地告诉编译器要使用哪个类。

于 2012-08-19T19:50:43.953 回答