#include <iostream>
#include <boost/units/quantity.hpp>
#include <boost/units/systems/si/length.hpp>
using namespace boost::units;
struct bu1 : base_unit<bu1, length_dimension, 2001> {};
struct bu2 : base_unit<bu2, length_dimension, 2002> {};
BOOST_UNITS_DEFINE_CONVERSION_FACTOR(bu1, bu2, double, 1.5);
#if 1
BOOST_UNITS_DEFINE_CONVERSION_FACTOR(bu2, bu1, double, 4.0);
#endif
int main(int argc, char *argv[])
{
quantity<bu1::unit_type> output(1 * bu2::unit_type());
// prints 4 or 0.67
std::cout << output.value() << std::endl;
return 0;
}
代码打印4
或打印0.666667
取决于是否定义了第二个转换因子。这应该是设计使然吗?物理学中没有两个这样的单位需要不同的转换因子,是吗?