1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/* The following code example is taken from the book
* "Object-Oriented Programming in C++"
* by Nicolai M. Josuttis, Wiley, 2002
*
* (C) Copyright Nicolai M. Josuttis 2002.
* Permission to copy, use, modify, sell and distribute this software
* is granted provided this copyright notice appears in all copies.
* This software is provided "as is" without express or implied
* warranty, and with no claim as to its suitability for any purpose.
*/
//#ifndef FRACTION.HPP
//#define FRACTION.HPP
// include standard header files
#include <iostream>
// **** BEGIN namespace CPPBook ********************************
namespace CPPBook {
class Fraction {
protected:
int numer;
int denom;
public:
/* error class
*/
class DenomIsZero {
};
/* default constructor, one-, and two-parameter constructor
*/
Fraction(int = 0, int = 1);
/* multiplication
* - global friend function, so that an automatic
* type conversion of the first operand is possible
*/
friend Fraction operator * (const Fraction&, const Fraction&);
/* multiplicative assignment
* - new: virtual
*/
virtual const Fraction& operator *= (const Fraction&);
/* comparison
* - global friend function, so that an automatic
* type conversion of the first operand is possible
*/
friend bool operator < (const Fraction&, const Fraction&);
/* output to and input from a stream
* - new: virtual
*/
virtual void printOn(std::ostream&) const;
virtual void scanFrom(std::istream&);
/* type conversion to double
* - new: virtual
*/
virtual double toDouble() const;
// new: virtual destructor (without instructions)
virtual ~Fraction() {
}
};
/* operator *
* - global friend function
* - inline defined
*/
inline Fraction operator * (const Fraction& a, const Fraction& b)
{
/* simply multiply numerator and denominator
* - this saves time
*/
return Fraction(a.numer * b.numer, a.denom * b.denom);
}
/* comparison operator <
* global friend function
*/
/*
bool operator < (const Fraction& a, const Fraction& b)
{
// since the denonminator cannot be negative, the following is sufficient
return a.numer * b.denom < b.numer * a.denom;
}
*/
/* standard output operator
* - overloaded globally and inline defined
*/
inline
std::ostream& operator << (std::ostream& strm, const Fraction& f)
{
f.printOn(strm); // call member function for output
return strm; // return stream for chaining
}
/* standard input operator
* - overloaded globally and inline defined
*/
inline
std::istream& operator >> (std::istream& strm, Fraction& f)
{
f.scanFrom(strm); // call member function for input
return strm; // return stream for chaining
}
} // **** END namespace CPPBook ********************************
//#endif // FRACTION_HPP
| |