Specifically: Is there a better way to handle being passed a zero denominator? Setting the denominator to 1 is feels mighty arbitrary. How can I do this right?
I would say throw a ArithmeticException for divide by zero, since that's really what's happening:
public Fraction(int numerator, int denominator) {
if(denominator == 0)
throw new ArithmeticException("Divide by zero.");
this.numerator = numerator;
this.denominator = denominator;
}
Instead of "Divide by zero.", you might want to make the message say "Divide by zero: Denominator for Fraction is zero."