class rational {
public:
rational(int numerator = 0, int denominator = 1);
int numerator() const;
int denominator() const;
};
who can tell me the meaning of this line?
//rational(int numerator = 0, int denominator = 1);
I know it's construct function. I want to know the meaning of " int numerator=0".
Thanks
