コード例 #1
0
ファイル: sale.cpp プロジェクト: AnthonyChuah/CPPscripts
 double Sale::savings(const Sale& other) const
 {
   return (bill() - other.bill());
 }
コード例 #2
0
ファイル: sale.cpp プロジェクト: AnthonyChuah/CPPscripts
 bool operator <(const Sale& first, const Sale& second)
 {
   // Because of polymorphism, will correctly apply subclass method
   // bill() instead of superclass method if subclass method implemented.
   return (first.bill() < second.bill());
 }
コード例 #3
0
bool operator <(const Sale& first, const Sale& second) {
	return (first.bill() < second.bill());
}