Compare commits

..

2 Commits

Author SHA1 Message Date
Camille Chauvet
4d3528ed3f add test 2023-08-03 17:47:40 +02:00
Camille Chauvet
7de4817171 fix; 2023-08-03 17:47:31 +02:00
3 changed files with 83 additions and 33 deletions

View File

@ -10,7 +10,7 @@ Fixed::~Fixed()
Fixed::Fixed()
{
ths->_value = 0;
this->_value = 0;
std::cout << "Default constructor called" << std::endl;
}
@ -93,52 +93,52 @@ Fixed Fixed::operator--(int)
return (tmp);
}
bool Fixed::operator==(const Fixed& src)
bool Fixed::operator==(const Fixed& src) const
{
return (this->_value == src._value);
}
bool Fixed::operator!=(const Fixed& src)
bool Fixed::operator!=(const Fixed& src) const
{
return (this->_value != src._value);
}
bool Fixed::operator>=(const Fixed& src)
bool Fixed::operator>=(const Fixed& src) const
{
return (this->_value >= src._value);
}
bool Fixed::operator<=(const Fixed& src)
bool Fixed::operator<=(const Fixed& src) const
{
return (this->_value <= src._value);
}
bool Fixed::operator>(const Fixed& src)
bool Fixed::operator>(const Fixed& src) const
{
return (this->_value > src._value);
}
bool Fixed::operator<(const Fixed& src)
bool Fixed::operator<(const Fixed& src) const
{
return (this->_value < src._value);
}
Fixed Fixed::operator*(const Fixed &src)
Fixed Fixed::operator*(const Fixed &src) const
{
return Fixed(this->toFloat() * src.toFloat());
}
Fixed Fixed::operator/(const Fixed &src)
Fixed Fixed::operator/(const Fixed &src) const
{
return Fixed(this->toFloat() / src.toFloat());
}
Fixed Fixed::operator+(const Fixed &src)
Fixed Fixed::operator+(const Fixed &src) const
{
return Fixed(this->toFloat() + src.toFloat());
}
Fixed Fixed::operator-(const Fixed &src)
Fixed Fixed::operator-(const Fixed &src) const
{
return Fixed(this->toFloat() - src.toFloat());
}
@ -159,14 +159,14 @@ Fixed& Fixed::max(Fixed& f1, Fixed &f2)
const Fixed& Fixed::min(const Fixed& f1, const Fixed &f2)
{
if (f1._value > f2._value)
if (f1._value < f2._value)
return (f1);
return (f2);
}
Fixed& Fixed::min(Fixed& f1, Fixed &f2)
{
if (f1._value > f2._value)
if (f1._value < f2._value)
return (f1);
return (f2);
}

View File

@ -18,17 +18,17 @@ class Fixed
Fixed &operator=(const Fixed& src);
bool operator<(const Fixed& src);
bool operator>(const Fixed& src);
bool operator>=(const Fixed& src);
bool operator<=(const Fixed& src);
bool operator==(const Fixed& src);
bool operator!=(const Fixed& src);
bool operator<(const Fixed& src) const;
bool operator>(const Fixed& src) const;
bool operator>=(const Fixed& src) const;
bool operator<=(const Fixed& src) const;
bool operator==(const Fixed& src) const;
bool operator!=(const Fixed& src) const;
Fixed operator-(const Fixed& src);
Fixed operator+(const Fixed& src);
Fixed operator*(const Fixed& src);
Fixed operator/(const Fixed& src);
Fixed operator-(const Fixed& src) const;
Fixed operator+(const Fixed& src) const;
Fixed operator*(const Fixed& src) const;
Fixed operator/(const Fixed& src) const;
Fixed &operator++();

View File

@ -2,6 +2,7 @@
#include <iostream>
int main( void ) {
{
Fixed a(0);
Fixed const b( Fixed( 5.05f ) * Fixed( 2 ) );
std::cout << a << std::endl;
@ -11,5 +12,54 @@ int main( void ) {
std::cout << a << std::endl;
std::cout << b << std::endl;
std::cout << Fixed::max( a, b ) << std::endl;
}
{
// Créer deux objets Fixed pour les tests
const Fixed a(2.5f);
const Fixed b(1.3f);
std::cout << "b: " << a << std::endl;
std::cout << "a: " << b << std::endl;
// Test de l'opérateur d'addition (+)
Fixed sum = a + b;
std::cout << "Addition: " << sum << std::endl;
// Test de l'opérateur de soustraction (-)
Fixed difference = a - b;
std::cout << "Subtraction: " << difference << std::endl;
// Test de l'opérateur de multiplication (*)
Fixed product = a * b;
std::cout << "Multiplication: " << product << std::endl;
// Test de l'opérateur de division (/)
Fixed quotient = a / b;
std::cout << "Division: " << quotient << std::endl;
// Test de l'opérateur de comparaison (==)
bool isEqual = (a == b);
std::cout << "Is a equal to b? " << std::boolalpha << isEqual << std::endl;
// Test de l'opérateur de comparaison (!=)
bool isNotEqual = (a != b);
std::cout << "Is a not equal to b? " << std::boolalpha << isNotEqual << std::endl;
// Test de l'opérateur de comparaison (<)
bool isLessThan = (a < b);
std::cout << "Is a less than b? " << std::boolalpha << isLessThan << std::endl;
// Test de l'opérateur de comparaison (>)
bool isGreaterThan = (a > b);
std::cout << "Is a greater than b? " << std::boolalpha << isGreaterThan << std::endl;
// Test de l'opérateur de comparaison (<=)
bool isLessThanOrEqual = (a <= b);
std::cout << "Is a less than or equal to b? " << std::boolalpha << isLessThanOrEqual << std::endl;
// Test de l'opérateur de comparaison (>=)
bool isGreaterThanOrEqual = (a >= b);
std::cout << "Is a greater than or equal to b? " << std::boolalpha << isGreaterThanOrEqual << std::endl;
}
return 0;
}