これは私のプログラムで、このエラーのために失敗します: 「例外」への参照があいまいです。
何故ですか?
私のクラス名は「例外」で、C++ には「例外」という名前を使用する他の関数が既にあるためですか? たとえば、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 :”<<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;
}