When reading <ratio> and <chrono> I tried to imagine a Length-type that protects against accidental conversion errors.
This is what I got:
#include <iostream>
#include <ratio>
using namespace std;
template<typename Scale>
struct Length {
long long val_;
Length(long long val) : val_{val} {}
Length() = default;
Length(const Length&) = default;
Length& operator=(const Length&) = default;
// conversion
template<typename Scale2>
Length(const Length<Scale2> &other)
: val_{ other.val_*(Scale2::num*Scale::den)/(Scale2::den*Scale::num) }
{ }
// access
long long value() const { return val_; }
};
typedef Length<ratio<1>> m;
typedef Length<kilo> km;
typedef Length<milli> mm;
typedef Length<ratio<1000,1094>> yard;
To be used like this
int main() {
km len_km = 300;
mm len_mm = len_km;
cout << " millimeter:" << len_mm.value() << endl;
cout << " m:" << m{len_km}.value() << endl;
cout << " yd:" << yard{len_km}.value() << endl;
}
And now I could add all the + and * operations to get really comfortable... :-)
I wonder:
- Is there an easier access to the arithmetic facilities that
durationandtime_pointdefine in<chrono>anyway? Can I use those reduce the effort forLength? - The compile-time constant
(Scale2::num*Scale::den)/(Scale2::den*Scale::num)seems dangerous in the conversion constructor (fraction/underflow?), but I can not figure a better metaprogramming way, Any hints here?