-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOperand.hpp
67 lines (62 loc) · 1.57 KB
/
Operand.hpp
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
#ifndef AVM_OPERAND_HPP
#define AVM_OPERAND_HPP
#include <string>
#include <cmath>
#include <exception>
#include "IOperand.hpp"
template <class Type>
class Operand : public IOperand
{
private:
Type _value;
std::string _strval;
eOperandType _type;
Operand()
{
_type = 0;
};
eOperandType _getBiggerType(IOperand const &rhs) const
{
return static_cast<eOperandType>(std::max(this->getPrecision(), rhs.getPrecision()));
};
public:
Operand(Type val, eOperandType type)
: _value(val),
_type(type)
{
_strval = std::to_string(val);
};
int getPrecision() const override
{
return this->getType();
}
eOperandType getType() const override
{
return this->_type;
}
std::string const &toString() const override
{
return _strval;
}
IOperand const *operator+(IOperand const &rhs) const override
{
return new Operand<double>((this->_value) + std::stod(rhs.toString()), _getBiggerType(rhs));
}
IOperand const *operator-(IOperand const &rhs) const override
{
return new Operand<double>((this->_value) - std::stod(rhs.toString()), _getBiggerType(rhs));
}
IOperand const *operator*(IOperand const &rhs) const override
{
return new Operand<double>((this->_value) * std::stod(rhs.toString()), _getBiggerType(rhs));
}
IOperand const *operator/(IOperand const &rhs) const override
{
return new Operand<double>((this->_value) / std::stod(rhs.toString()), _getBiggerType(rhs));
}
IOperand const *operator%(IOperand const &rhs) const override
{
return new Operand<double>(std::fmod((this->_value), std::stod(rhs.toString())), _getBiggerType(rhs));
}
};
#endif