12.07.2015 Views

OO Example: Fractions

OO Example: Fractions

OO Example: Fractions

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Creating a bare Fraction class class Fraction: Constructor, with optional arguments:● We want to hide the numer and denom:➢ def __init__(self, n=0, d=1):● self.__numer = n● self.__denom = d● Any potential problems/constraints? String representation, for print:➢ def __str__(self):● return "%d / %d" %(self.__numer, self.__denom)CMPT140: <strong>OO</strong>: fractions 20 Nov 20093

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!